What do you understand by classes in java?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

If a class is declared without any access modifiers, where can the class be accessed?

0 Answers  


abstract class Demo { public void show() { System.out.println("Hello I am In show method of Abstract class"); } } class Sample extends Demo { public void show() { super.show(); System.out.println("Hello I am In Sample "); } } public class Test { public static void main(String[] args) { //I WANT TO CALL THE METHOD OF BASE CLASS IT IS POSSIBLE OR NOT CAN WE USE SCOPE RESOLUTION OPERATOR TO CALL OR JAVA NOT SUPPORTED THAT :: OPERATORE } }

3 Answers  


Explain an intermediate language?

0 Answers  


How do you use spaces in java?

0 Answers  


What is package protected in java?

0 Answers  






When is an object in the mean to garbage collection?

3 Answers  


What is the static variable?

0 Answers  


How many bytes is a character?

1 Answers  


What is the loop in java?

0 Answers  


what is an objects lock and which objects have locks? : Java thread

0 Answers  


What is string buffer?

0 Answers  


What does isempty () do in java?

0 Answers  


Categories