why applet doesn't have main? isn't possible a program with
out main?
Answer Posted / varsha
yes
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
What is the difference between double and float variables in java?
What is a Hash Table? What are the advantages of using a hash table?
Can we have multiple public classes in a java source file?
What is assembly language?
Is linkedlist thread safe in java?
Can a final variable be initialized in constructor?
Explain the public class modifier?
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 boolean used for?
Can a class be a super class and a sub-class at the same time? Give example.
How do you define a parameter?
What is the java virtual machine?
Explain the use of volatile field modifier?
What is meant by tab pans?
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.