what are the different non-access specifiers in java?
Answers were Sorted based on User's Feedback
Answer / chinju230889
1. static
2. final
3. transient
4. abstract
5. synchronized
Is This Answer Correct ? | 30 Yes | 3 No |
Answer / neeraj khatod
static
final
abstract
synchronized
volatile
transient
native
strictfp
Is This Answer Correct ? | 15 Yes | 1 No |
Answer / dhanasekar
1)final
2)synchronize
3)static
4)native
5)volatile
6)strictfp
Is This Answer Correct ? | 3 Yes | 2 No |
Why does java have two ways to create child threads?
what is object deep copy and shallow copy and why it is required?
In the HashMap, we know the values but we dont know the key, then how can we get the key from HashMap ?????
How do you convert boolean to boolean?
How do you use compareto in java?
How can we access some class in another class in java?
Name the package that always imported by default?
How are variables stored in memory?
Explain wait() method of object class ?
What is operator overloading. Is it is supported in java?
Is Java is 100% pure OOPS? Explain?
System.out.println(101/14) what is the output? a)6 b)14 c)7.14 d)0