61. When a thread is created and started, what is its initial state?
62. What is the purpose of finalization?
63. What is the Locale class?
64. What is the difference between a while statement and a do statement?
A do statement checks at the end of a loop to see whether the next iteration of a loop should occur. The do statement will always execute the body of a loop at least once.
65. What is the difference between static and non-static variables?
66. How are this() and super() used with constructors?
67. What is daemon thread and which method is used to create the daemon thread?
68. Can applets communicate with each other?
An applet can also get references to all other applets on the same page using the getApplets() method of java.applet.AppletContext. Once you get the reference to an applet, you can communicate with it by using its public members.
It is conceivable to have applets in different virtual machines that talk to a server somewhere on the Internet and store any data that needs to be serialized there. Then, when another applet needs this data, it could connect to this same server. Implementing this is non-trivial.
69. What are the steps in the JDBC connection?
Step 1 : Register the database driver by using :
Class.forName(\" driver classs for that specific database\" );
Step 2 : Now create a database connection using :
Connection con = DriverManager.getConnection(url,username,password);
Step 3: Now Create a query using :
Statement stmt = Connection.Statement(\"select * from TABLE NAME\");
Step 4 : Exceute the query :
stmt.exceuteUpdate();
70. How does a try statement determine which catch clause should be used to handle an exception?
71. Can an unreachable object become reachable again?
72. What method must be implemented by all threads?
73. What are synchronized methods and synchronized statements?
Synchronized statements are similar to synchronized methods. A synchronized statement can only be executed after a thread has acquired the lock for the object or class referenced in the synchronized statement.
74. What is Externalizable?
75. What modifiers are allowed for methods in an Interface?
76. What are some alternatives to inheritance?
Delegation means that you include an instance of another class as an instance variable, and forward messages to the instance. It is often safer than inheritance because it forces you to think about each message you forward, because the instance is of a known class, rather than a new class, and because it doesn't force you to accept all the methods of the super class: you can provide only the methods that really make sense. On the other hand, it makes you write more code, and it is harder to re-use (because it is not a subclass).
77. What does it mean that a method or field is "static"?
Static methods can be referenced with the name of the class rather than the name of a particular object of the class (though that works too). That's how library methods like System.out.println() work out is a static field in the java.lang.System class.
78. What is the difference between preemptive scheduling and time slicing?
The scheduler then determines which task should execute next, based on priority and other factors.
79. What is the catch or declare rule for method declarations?
80. Is Empty .java file a valid source file?
No comments:
Post a Comment
Note: only a member of this blog may post a comment.