Collections
What are the various ways to iterate over a list ? To iterate over a list in two different ways : 1. Using iterator. 2. Using for-each loop. Is Listiterator inherits from Iterator interface ? Yes, ListIterator inherits from...
Read MorePosted by Sanjay Mishra | Sep 25, 2014 | Core Java |
What are the various ways to iterate over a list ? To iterate over a list in two different ways : 1. Using iterator. 2. Using for-each loop. Is Listiterator inherits from Iterator interface ? Yes, ListIterator inherits from...
Read MorePosted by Sanjay Mishra | Sep 19, 2014 | Core Java |
Define the marker interface in java ? Interfaces with no methods are known as marker interfaces for example: Clonable, Serializable, Event listener, SingleThreadModel. These interfaces are implemented by the classes or their...
Read MorePosted by Sanjay Mishra | Aug 7, 2014 | Android Apps, Techonology |
This is a very common question that is frequently asked by users of android apps and want to these apps on their PC. Android Emulator has been used by developer for developing and testing their apps on production-like...
Read MorePosted by Sanjay Mishra | Dec 1, 2013 | Core Java |
What is the most important feature that makes Java different to other language? Platform independent feature makes Java different to other language. What is platform independence means ? It means that we can write and compile...
Read MorePosted by Sanjay Mishra | Jun 26, 2013 | Core Java |
What Is Java? Java is a high-level computer Object Oriented Programming language, originally developed by James Gosling at Sun Microsystems and released in 1995 (which has merged into Oracle Corporation on January 27, 2010)....
Read More