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 |
Explain about the Try Block?
Why jdbc is used in java?
Explain the two tier and three tier architecture of jdbc.
What does executeupdate return in jdbc?
What are the advantages of using preparedstatement over statement?
What is hbm xml?
What is an SQL Locator?
What are the 4 types of jdbc drivers?
Why isn't the java.sql.DriverManager class being found?
How do I write Greek ( or other non-ASCII/8859-1 ) characters to a database?
How MS-Access DB can be accessed over a network, using JDBC API?
What is type 4 jdbc driver?