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 |
Is jdbc secure?
What is a PreparedStatement?
How to know howmuch data is truncated?
What do you mean by two phase commits?
Explain about the drive manager class working?
Does the database server have to be running Java or have Java support in order for my remote JDBC client app to access the database?
How can I determine the isolation levels supported by my DBMS?
Does sql allow null values ? Can we use it within where clause ?
What are the differences between execute, executequery, and executeupdate?
What are the advantages of database connection pooling?
What is JDBC Batch Processing and what are it’s benefits?
What is savepoint in jdbc?