What are the different types of modifiers?
Answers were Sorted based on User's Feedback
Answer / subrahmanyam
public
private
protected
static
(Inner classes only)
final
abstract
synchronized
transient
volatile
native
Is This Answer Correct ? | 9 Yes | 7 No |
Answer / keerthana
private-visible to class only.
public-visible to world.
private-visible to package and subclasses.
static-for creating class,methods and variables.
final-for finalizing the implementation of class,methods and variables.
abstract-for creating abstract classes and methods.
volatile-for implementing threads.
synchronized-for implementing threads.
Is This Answer Correct ? | 3 Yes | 3 No |
In which ways is driver class is registered with drive manager?
Which interface handles transaction management in jdbc?
What class.forname will do while loading drivers of jdbc?
Does the JDBC-ODBC Bridge work with Microsoft J++?
What is correlated subquery?
0 Answers emc2, JK Technosoft,
What is a jdbc connection?
How to check jdbc driver version in websphere?
What are the steps involved in establishing a connection using jdbc in java?
How do I check in my code whether a maximum limit of database connections have been reached?
What are types of resultset?
What is the use of jdbc?
Give me some example for getting connection from connection pooling in JBoss Server. Is Connection Pool default in Server or we have to create it? Who can create Connection Pool in a Team. How it will be accessed by the developer code?