Well, the rumors were true. Not only is Amazon entering the “music locker” space, they’re doing it before both Google and Apple — as their “Cloud Drive” and “Cloud Player” have just gone live on their site tonight. Cloud Drive is the name Amazon is giving to its media storage space on their servers. They give you 5 GB of ... Read More »
Docs Warn Facebook Can Cause Depression!
Looks like Facebook has got its own mental disorder! Its called ‘Facebook Depression’! I am not kidding here a group of doctors have actually done enough research to link Facebook to a new kind of depression and named it “Facebook Depression”, caused by excessive obsession with social networking sites. Don’t think you can’t catch “Facebook Depression” because you only use ... Read More »
Black Hole might have wiped Alien life!
After years of Alien life search, Astronomers have now come up with interesting theory saying a black hole occurring when a giant star dies might have wiped out the enter Alien life stressing Earth is also heading for the same end some time in the future. A phenomenon known as a white dwarf hypernova could have sucked alien life into ... Read More »
Fake Mayan Statue sold at $4 million
A Mayan sculpture sold in an auction at paris for $4.2m is actually a fake one, says Mexican officials The French auction house Drouot maintains that the statue, of a masked figure carrying a shield, is genuine and more than 1,000 years old. But Mexico’s National Institute of Anthropology and History says it does not match the style of the ... Read More »
Amazon Launches Appstore for Android
Amazon has launched a dedicated store just for Android apps. Now this must be clear sign, signaling the raise of popularity and demand for Android apps. Google’s Android Market which now has about 170,000 apps, users can now get games, music players, e-readers, maps and more at Verizon Wireless’ V CAST and Amazon.com’s new Appstore for Android. Amazon’s move comes ... Read More »
Difference Between C++ and Java
Java Vs C++ Java does not support pointers.Pointer are inherently tricky to use and troublesome. Java does not support multiple Inheritances because it causes more problem than it solves.Instead Java supports multiple interface inheritance,which allows an objects must implement those method signature from different interfaces with the condition that the inheriting object must implement those inherited methods.The multiple interface inheritance ... Read More »
Difference between Static and Dynamic class loading
Static class loading: Classes are statically loaded with Java’s new operator. Car c= new Car(); A NoClassDefFoundException is thrown if a class is referenced with Java new operator but the runtime system cannot find the referenced class. Dynamic class loading: Dynamic loading is a technique for programatically invoking the function of a class loader at runtime. Done by Class.forName(String className); ... Read More »