Is string is a class in java?
No Answer is Posted For this Question
Be the First to Post Answer
What is early binding and late binding in java?
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 } }
what are different ways in which a thread can enter the waiting state? : Java thread
Differentiate between vector and array list.
Can we print null in java?
What is anti pattern in cyber security?
What are voids?
Explain java code for recursive solution's base case?
what is the difference between static block and static method
what are the diffrences between interface and abstract class?
What is the difference between ArrayList and Vector? which one is better in Java
0 Answers SkillGun Technologies,
What is variable and its types?