References and Resources java 1. Java General Java mother site @ http://java.sun.com (or http://www.oracle.com/technetwork/java/index.html ). Java Developers' sites, in particular, http://java.net . JDK (aka Java SE ) Java SE mother site @ http://java.sun.com/javase (or http://www.oracle.com/technetwork/java/javase/overview/index.html ). JDK 7 API Documentation Online @ http://download.oracle.com/javase/7/docs/api/index.html . JDK 7 Documentation Online @ http://download.oracle.com/javase/7/docs/ . Ken Arnold, James Gosling and David Holmes, "The Java Programming Language", 4th ed, 2005. (The defacto standard for Java Language, but does not seem to have been updated to cover the latest features?!) James Gosling, Bill Joy, Guy Steele and Gilad Bracha, "The Java Language Specification", 3rd ed, 2005. (The defacto standard for JVM, but does not seem to have been updated?!)...
Popular posts from this blog
To enter these codes just pull up the default dialer app and use your chubby fingers to press the correct buttons. Code Description *#*#4636#*#* Display information about Phone, Battery and Usage statistics *#*#7780#*#* Restting your phone to factory state-Only deletes application data and applications *2767*3855# It’s a complete wiping of your mobile also it reinstalls the phones firmware *#*#34971539#*#* Shows completes information about the camera *#*#7594#*#* Changing the power button behavior-Enables direct poweroff once the code enabled *#*#273283*255*663282*#*#* For a quick backup to all your media files *#*#197328640#*#* Enabling test mode for service activity *#*#232339#*#* OR *#*#526#*#* Wireless Lan Tests *#*#232338#*#* Displays Wi-Fi Mac-address *#*#1472365#*#* For a quick GPS test *#*#1575#*#* A Different type GPS test *#*#0283#*#* Packet Loopback test *#*#0*#*#* LCD display test *#*#0673#*#* OR *#*#0289#*#* ...
Java Question ..............? Q1. What is a cookie ? Ans. A cookie is a small piece of text stored on a user's computer by the browser for a specific domain. Commonly used for authentication, storing site preferences, and server session identification. Q2. Can we reduce the visibility of the overridden method ? Q3. What are different types of inner classes ? Ans. Simple Inner Class, Local Inner Class, Anonymous Inner Class , Static Nested Inner Class. Q4. Difference between TreeMap and HashMap ? Ans. They are different the way they are stored in memory. TreeMap stores the Keys in order whereas HashMap stores the key value pairs randomly. Q5. What is the difference between List, Set and Map ? Ans. List - Members are stored in sequence in memory and can be accessed through index. Set - There is no relevance of sequence and index. Sets doesn't contain duplicates whereas multiset can have duplicates. Map - Contains Key , Value pairs. Q6. Difference between Public...
Comments
Post a Comment