What exactly is java?


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

Post New Answer

More Core Java Interview Questions

What are identifiers in java?

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  


Difference between String and String Buffer?

3 Answers  


what is the difference between String and StringBuffer classes?

2 Answers   Infosys,


Which object oriented concept is achieved by using overloading and overriding?

0 Answers  






can we declare private class in java file?

13 Answers  


What is the difference between interpreter and compiling ?

2 Answers   TCS,


What is overriding in java?

0 Answers  


What are the advantages of assembly language?

0 Answers  


What is the use of volatile in java?

0 Answers  


What is anagram in java?

0 Answers  


Can each java object keep track of all the threads that want to exclusively access it?

0 Answers  


Categories