Skip to main content

Apple released yet another disappointment - iPhone 5

The consumers and the smart phone market  today are way too different as compared to 2007-10. In those golden Apple days, there was no real competition in the market and the consumers were dying to buy an "iPhone". After years of hard work, innovation and providing latest technologies at competitive price, Android phones like Motorola's Droids, Samsung Galaxy S and many others have won consumers trust and hearts.

Samsung Galaxy SIII and Apple iPhone 5

Competition is good as it leads to innovations and quality products at competitive prices. Google's Nexus 7 with Quad core CPU, 12 core GPU and an over all top-notch hardware and software for just $200 is the sweetest and latest fruit of healthy competition. Apple in the times of Steve Jobs was good at competing and winning the competition (as soon as it arrived) with quality and powerful branding. With iPhone 5, Tim Cook, the current CEO had different plans. As Jack Welch once said:
"Number 1, Cash is king,
 Number 2, Communicate,
 Number 3, Buy or Bury the Competition"
Apple took a look at the market and targeted all big names that had better products and dragged them to the court. Some of the claims were reasonable but some were not. Not to mention Samsung's Galaxy SIII is a way impressive gadget as compared to the newly announced iPhone 5 so they went to bury Samsung first and then released their iPhone 5. They did it in style as after all "Cash is king" ;). The question shows up that:
"Is Apple safe if Samsung gets a ban on selling its top-notch devices?".
Off course not. Android's lands are fertile and are providing fresh crops of impressive and innovative smartphones. So, watch out Apple.
Nokia's upcoming Windows 8 based Lumia with OIS and more
We should not forget the big brother watching who is to launch his OS a.k.a Windows 8 in less than 2 months from now. We can expect a lot of Windows 8 phones with impressive hardware and competitive software like Nokia's new Lumia phone.

The next step for Apple could be an iPad mini, which should compete with nexus 7 and Kindle Fire HD with a competitive price-point or it would be yet another disappointment from Tim.

Lets wait and see how it shapes up. Feel free to drop your comments.

Comments

Popular posts from this blog

Loading multiple instances of Skype on a Windows machine

Have you ever been in a situation when you had 1 PC available and your wife or friend also needed to be online at the same time? Or are you 1 of those people with multiple Skype IDs to keep home and business apart and had a situation when you wanted to come online from both your IDs at the same time? Well, the old school way is to go online 1 at a time or may be use 1 on a smartphone and other on your PC. But guess what? Microsoft was thoughtful enough to add an option that comes along the default Skype installation that can solve this problem for you. All what you have to do is to perform 2 simple steps: Step 1: Load "Run" window by pressing "Window + R" keys together. If you are new to using key combinations, here is how its done. Press and hold "Window" key from your keyboard and with that key being pressed, also press "R" key and you are done. Now you can release both keys. Step 2: Copy and Paste the following string in the ...

Quick Tip - Accessing Dell's recovery partition

Preface: Hi, Today's quick tip is about accessing Dell's recovery partition. How many times did you felt like your computer has gone mad due to viruses or the extra load of software that you have loaded up over a period of time. I used to wonder how do we access Dell's recovery partition as its not available through some obvious means. I just learned how to do this so sharing it with the people so that it may save someone some time. The Tip: To access Dell's recovery partition, you need to press Ctrl+F11 right after turning the machine on. If it do not show up by pressing once, you may repeat the key sequence "gently". Once its gone beyond the BIOS screen and started to load the OS, means that you missed the spot and you need to restart the computer again to go through the same cycle again. After successfully invoking Dell System Recovery , it will show up the default drive image and will provide you an option to refresh you computer to factory defaults. ...

Top 10 Javascript (ES6+) Interview Questions with sample code

Welcome to the world of JavaScript interview questions! If you're preparing for a job interview as a JavaScript developer, you've come to the right place. We've compiled a list of the most common questions that you may encounter during your interview, along with some tips and sample answers to help you showcase your skills and knowledge. Whether you're an experienced developer or just starting out, this guide will provide you with a comprehensive understanding of the concepts and best practices of JavaScript. So, grab a cup of coffee, get comfortable, and let's dive into the world of JavaScript interview questions!  What is the difference between let and var in JavaScript? var is function scoped, whereas let is block scoped. This means that a variable declared with var can be accessed within the entire function, whereas a variable declared with let can only be accessed within the block in which it was declared. Example: //var function testVar() { var x = ...