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 |
What is the difference between break and continue statements?
Static Variable can referred in non-static method?
What do you mean by constant time complexity?
What is substring of a string?
Is arraylist a class in java?
10. class Nav{ 11. public enum Direction { NORTH, SOUTH, EAST, WEST } 12. } 13. public class Sprite{ 14. // insert code here 15. } Which code, inserted at line 14, allows the Sprite class to compile? a)Direction d = NORTH; b)Nav.Direction d = NORTH; c)Direction d = Direction.NORTH; d)Nav.Direction d = Nav.Direction.NORTH;
What do you understand by the term singleton?
Why pointers are not used in java?
Explain the difference between map and flatmap stream operation?
How to sort an unsorted array in java?
Explain heap sort?
How do you execute a thread in java?