Skip to main content

Android Mobile phones


There are many reasons why Google’s Android phones are better than iPhone or any other “Smartphones” on the planet.

One main reason can be simplify in just one word:  CHOICES !
Imagine a phone that is as capable and better than the iPhone but without the monopoly of one company, Apple. As much i adore the Apple...

That is what Android is all about. The ability to run tens of thousands of apps just like the iPhone but with choice of phone models that you can choose from. 

The choice of with or without physical keyboard, shape, color, phone size, screen size, manufacturer, features, and phone carrier.
 No more monopoly by one company on one carrier. 
Choices drive competition. 

The competition within Android phone manufacturers itself will inevitably make Android phones even better than what it is today, and in a short period of time. 
Android allows developers/programmers to develop apps (applications) in what is known as "application without borders".
In the future, don’t be surprised if your car dashboard runs Android.

This allows your car to run the same apps as your hand-carried phone. Android in a car allows you make phone calls, play music, GPS navigation, traffic updates, car diagnostic with parts replacement suggestions, parts price comparison, and service center closest to you. 
The possibilities are endless.
iPhone’s hardware and software developments are done by one company, Apple. 
However, Android’s hardware development is done by many different companies from all over the world with famous brand name such as Motorola, Sony, Samsung, Dell, LG, HTC, Acer, etc.

Comments

Popular posts from this blog

Ten output devices, advantages and disadvantages, inter-site back-up mechanism, Expert systems for medical diagnosis,information systems security

(i)Printer Printer enables us to produce information output on paper. It is one of the most popular computer output devices we often use to get information on paper - called hard copy. Advantage They produce high quality paper output for presentation at a speedy rate. It is also possible to share the printer among different users in a network. Disadvantage The cost for maintenance of the printer equipment as well printing ink is cumulatively high. (ii) Plotters These devices are used to produce graphical outputs on paper. They have automated pens that make line drawings on paper Advantage They can produce neat drawings on a piece of paper based on user commands. In Computer Aided Design (CAD) they are used to produce paper prototypes that aid in design of the final system. Disadvantage They are more expensive than printers. Further, the command based interface is difficult to use. (iii)Monitor It is...

simple basic object oriented java code for employee salary calculation

import java.io.*; import java.util.Scanner; public class Employees {     Scanner scan=new Scanner(System.in);     String Fname;   int EmpID;  int DOB; double Allowance;   double Salary;     public void getDetails(){   System.out.println("Enter the first name");   Fname=scan.next();   System.out.println("Enter the ID number");   EmpID=scan.nextInt();   System.out.println("Enter the date of birth");   DOB=scan.nextInt();   System.out.println("Enter the salary");   Salary=scan.nextDouble();   Allowance=0.6*Salary;     }    public void printReport(){    System.out.println(Fname+"\t"+EmpID+"\t"+calGross()+"\t"+calPayee()+"\t"+calNetIncome());    }    public double calGross(){        return Salary + Allowance;    }    public double calPayee(){     ...

Start Wamp server on windows automatically permanently

For those that have completely refused to use linux platforms for development, you might find this useful. As with all (aspiring) web developers, it’s always important to test your projects locally before putting it out there for the entire web community to see. One must-have developer tool for this purpose is WAMPServer. We’ve all wished it’s automatically up and running when we need it. These easy steps will help you automate WAMPServer to run on system start-up. For those unfamiliar with WAMPServer, it is a development package that lets you run web development projects locally. WAMP stands for Windows, Apache, MySQL, PHP/Perl/Python. It’s basically four programs packaged to work as one. WAMP basically turns any Windows PC into a localized web server. The Linux counterpart is called LAMP, obviously. Once WAMPServer is installed in your PC, you’ll be able to test your web projects before putting it into the live environment. But I always found it a hassle to manually s...