Does java trim remove newline?
No Answer is Posted For this Question
Be the First to Post Answer
what is the use of reference variable
Mention the default values of all the elements of an array defined as an instance variable.
How is Garbage collection done in Java?
Where can i get Latest SUN Certification Dumps and what are the Sun Certification Codes that are available, Im new to JAVA, so please gimme info as i need to write J2EE - Core Java Certification
What is run time polymorphism?
6 Answers eClerx, Elementus Technologies,
there are N number of matchboxes numbered 1...N.each matchbox contain various number of stick.Two player can alternatevely pick some amount of stick from the higest stick containing box . The player is condidered win if there is no stick after his move.Find the final move so that the move player win. Note:In case the number of stick is equal ,pick the stick from the higest numbered box.
how copy the hashmap object into arraylist at java program?
difference between vectorlist and hash
abstract class Demo { public void show() { System.out.println("Hello I am In show method of Abstract class"); } } class Sample extends Demo { public void show() { super.show(); System.out.println("Hello I am In Sample "); } } public class Test { public static void main(String[] args) { //I WANT TO CALL THE METHOD OF BASE CLASS IT IS POSSIBLE OR NOT CAN WE USE SCOPE RESOLUTION OPERATOR TO CALL OR JAVA NOT SUPPORTED THAT :: OPERATORE } }
Explain the pointers in Java?
What is an object in Java and what are its benefits?
How are this and super used?