what is diff between Access modifier and specifier?
Answer Posted / rinal doshi 9998099633
access modifiers will support the functionality of a method.
abstract,final,native,synchronized,static,volatile.
access specifiers will specify the scope of the members of
access
public,protected,private,default.
Is This Answer Correct ? | 17 Yes | 0 No |
Post New Answer View All Answers
What is the purpose of the wait(), notify(), and notifyall() methods?
A user of a web application sees a jsessionid argument in the URL whenever a resource is accessed. What does this mean? a. The form must have the field jsessionid b. URL rewriting is used as the session method c. Cookies are used for managing sessions
Define aop(assepct oriented programing)?
How would you reatach detached objects to a session when the same object has already been loaded into the session?
Why are component architectures useful?
What is the relationship between the canvas class and the graphics class?
When a thread blocks on i/o, what state does it enter?
Which are the different segments of memory?
What is metaspace?
int x=5,i=1,y=0; while(i<=5) { y=x++ + ++x; i=i+2; } System.out.println(x); System.out.println(y); System.out.println(i); How to solve this? Please explain!
Brief description about local interfaces?
What are the different approaches to represent an inheritance hierarchy?
AS a developer will u create a data source in connection pool? If so how will u do that, how to access the object from connection pool using IRAD tool?
What class is the top of the awt event hierarchy?
What is the difference between system.out ,system.err and system.in?