Explain the meaning of java applet.


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

Post New Answer

More Core Java Interview Questions

How do you check if two strings are equal in java?

0 Answers  


Explain about global variables in Java?

3 Answers  


Features of JAVA ? In which version of java synchronizedXXX() methods are included in Collections class.

1 Answers   NIIT,


Why is singleton instance static?

0 Answers  


Can an interface have a constructor?

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  


Can you sort a string in java?

0 Answers  


What is <> used for in java?

0 Answers  


What is the purpose of the runtime class in java programming?

0 Answers  


Can the garbage collection be forced by any means?

0 Answers  


What are synchronized methods and synchronized statements in java programming?

0 Answers  


What are the advantages of passing this into a method instead of the current class object itself?

0 Answers  


Categories