what is difference betwenn Access Specifier and Access
Modifier ????
Answer Posted / praveen111tripathi
Access Specifiers specify the scope of anything(D.M,Member
function ,class)while Access modifiers define that thing's
accessibility in different scops
A.S. in java
1-Public
2-default
3-protected
4-private
A.M. in java
static,final etc.
| Is This Answer Correct ? | 19 Yes | 1 No |
Post New Answer View All Answers
What is difference between ++ I and I ++ in java?
Is it possible to override private or static method in java?
What is the destroy method?
Write an algorithm program in java for the following question.. In a VLSI design techniques,they used rectangles to design circuits. EVery rectangle is to be placed according to x,y coordinates. Check whether or not two rectangles overlap each other. Here overlapping of rectangles is acceptable, if 1) one rectangle intersect with other. 2) one rectangle fully covers other. The time of algorithm should not exceed o(n logn).
What is the difference between double and float variables in java?
What is the difference between final, finally and finalize()?
What is internal variable?
Is main is a keyword?
Why are parameters used in functions?
How does sublist works in java?
What is sortedmap in java?
What are static blocks in java ?
What are different types of states exist for a thread?
I want to re-reach and use an object once it has been garbage collected. How it's possible?
How do you convert an int to a double in java?