What are non-access modifiers?

Answers were Sorted based on User's Feedback



What are non-access modifiers?..

Answer / javamasque

There are below commonly used non-access modifiers
• Static
• Abstract
• Synchronized
• Final

Is This Answer Correct ?    2 Yes 0 No

What are non-access modifiers?..

Answer / ambadas

Non access modifiers are static final abstract synchronized volatile transient strctfp native

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

How do you implement polymorphism in our day to day life?

0 Answers   Cap Gemini,


Interface A { String test(); } Interface B { int test(); } Create a class AB which must implements both A & B interfaces.

17 Answers   Hewitt,


Why collection doesn’t extend cloneable and serializable interfaces?

0 Answers  


StringBuilder s = new StringBuilder("Hello Mom");s.append(",I mean,Mother"); Response.Write(s.ToString()); String s = "Hello Mom"; s+ = ",I mean Mom"; Response.Write(s); Which is faster ? which uses the most memory?

6 Answers   HCL,


What does this () mean in java?

0 Answers  






What do you mean by mnemonics?

0 Answers  


How many types of constructors are used in java?

0 Answers  


How do you use substring in java?

0 Answers  


What is the meaning of immutable regarding string?

0 Answers  


How objects of a class are created if no constructor is defined in the class?

0 Answers  


What is == and === in javascript?

0 Answers  


What modifiers are used with a top level class?

3 Answers  


Categories