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 |
what is rowset?
What are the Normalization Rules?
How are jdbc statements used?
I have the choice of manipulating database data using a byte[] or a java.sql.blob. Which has best performance?
Is jdbc a framework?
I have written a program to connect to database using odbc.Can this Application run on any Platform????
Explain the locking system in jdbc?
Which type of driver provides jdbc access via one or more odbc drivers?
Which of the attributes in the monitoring tab for a jdbc connection pool in the administrative console tell us how many clients are currently waiting for a connection?
What is sqlwarning and discuss the procedure of retrieving warnings?
What are four types of JDBC driver?
What is odbc and jdbc?