What is checkpoint? How to create checkpoints in our java
projects?
Answer / p.sivakumar from trichy sjc
System.in.read()
this method is used as a checkpoint in java programs
this method is used to get a character from standard device.
until you give input it will wait
| Is This Answer Correct ? | 2 Yes | 10 No |
What is the applet sandbox?
Which characters may be used as the second character of an identifier, but not as the first character of an identifier?
difference of inheritance and interface
Are there books about seam?
What is the O/P of the below Code Snippet ? And how does it imply the concept of call-by-value/call-by-reference. (Note : Pls ignore syntx errors) public class One { sop ("Into One--"); } public class Two extends One{ sop ("Into Two--"); } public class Home { One a; Two t; public static void main(argv[]) { sop ("In Home--"); sop(One.a); sop(Two.a); sop(One.t); sop(Two.t); } }
How a component can be placed on Windows?
Which containers use a border layout as their default layout?
What is Bootstrapping in RMI?
how to use debug in my elipse to solve problems that exist in my project
What are different types of layout managers in java.awt package?
Can I import same package/class twice? Will the jvm load the package twice at runtime?
What is aop(assepct oriented programing)?