Is empty .java file name a valid source file name?
No Answer is Posted For this Question
Be the First to Post Answer
How do you load an HTML page from an Applet ?
What is an error in java?
What’s the difference between callable and runnable?
When finally clause is executed?
Can we inherit the constructor in a Class?please give one example.
what is synchronization and why is it important? : Java thread
What is an iterator java?
4.1 Supply contracts (in the form of comments specifying pre- and post conditions) for the enqueue() method of the LinkedQueue class given in the Appendix. (2) 4.2 Let Thing be a class which is capable of cloning objects, and consider the code fragment: Thing thing1 = new Thing(); //(1) Thing thing2 = thing1; //(2) Thing thing3 = (Thing) thing1.clone(); //(3) Explain how the objects thing2 and thing3 differ from each other after execution of the statements. (
What is JAVA? Why it is platform independent?
State some advantages of java?
why java is platform independent?
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.