Prepare Interview

Mock Exams

Make Homepage

Bookmark this page

Subscribe Email Address

Core Java Interview Questions and Answers

Test your skills through the online practice test: Core Java Quiz Online Practice Test

Ques 256. What is DriverManager?

The basic service to manage set of JDBC drivers.

Is it helpful? Add Comment View Comments
 

Ques 257. What is Class.forName() does and how it is useful?

It loads the class into the ClassLoader. It returns the Class. Using that you can get the instance ( 'class-instance'??.newInstance() ).

Is it helpful? Add Comment View Comments
 

Ques 258. What do you mean by RMI and how it is useful?

RMI is a remote method invocation. Using RMI, you can work with remote object. The function calls are as though you are invoking a local variable. So it gives you a impression that you are working really with a object that resides within your own JVM (Java Virtual Machine) though it is somewhere.

Is it helpful? Add Comment View Comments
 

Ques 259. What is the protocol used by RMI?

RMI-IIOP

Is it helpful? Add Comment View Comments
 

Ques 260. What is the use of PreparedStatement?

PreparedStatements are precompiled statements. It is mainly used to speed up the process of inserting/updating/deleting especially when there is a bulk processing.

Is it helpful? Add Comment View Comments
 

Most helpful rated by users:

©2024 WithoutBook