what are the different non-access specifiers in java?

Answers were Sorted based on User's Feedback



what are the different non-access specifiers in java?..

Answer / chinju230889

1. static
2. final
3. transient
4. abstract
5. synchronized

Is This Answer Correct ?    30 Yes 3 No

what are the different non-access specifiers in java?..

Answer / neeraj khatod

static
final
abstract
synchronized
volatile
transient
native
strictfp

Is This Answer Correct ?    15 Yes 1 No

what are the different non-access specifiers in java?..

Answer / dhanasekar

1)final
2)synchronize
3)static
4)native
5)volatile
6)strictfp

Is This Answer Correct ?    3 Yes 2 No

what are the different non-access specifiers in java?..

Answer / alosha

static

Is This Answer Correct ?    4 Yes 7 No

what are the different non-access specifiers in java?..

Answer / robin

friendly,

Is This Answer Correct ?    1 Yes 5 No

Post New Answer

More Core Java Interview Questions

What is the difference between break and continue statements?

0 Answers  


Static Variable can referred in non-static method?

3 Answers  


What do you mean by constant time complexity?

0 Answers   Amazon,


What is substring of a string?

1 Answers  


Is arraylist a class in java?

0 Answers  


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;

2 Answers  


What do you understand by the term singleton?

0 Answers  


Why pointers are not used in java?

0 Answers  


Explain the difference between map and flatmap stream operation?

0 Answers  


How to sort an unsorted array in java?

0 Answers  


Explain heap sort?

0 Answers   Flextronics,


How do you execute a thread in java?

0 Answers  


Categories