What are the steps in the jdbc connection?
No Answer is Posted For this Question
Be the First to Post Answer
Does Java support multiple Inheritance?
What is volatile data type?
what is the difference between sleep() and Wait()?
How can you sort dates?
What is the blank final variable?
What are the 7 types of characters?
What is the use of TL?
What is variable and constant explain with example?
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 is multi-tasking
3 Answers Anand Group, Photon Infotech, Tech Mahindra,
Why wait and notify methods are declared in object class?
How to create an instance of a class without using "new" operator? Plz help me out properly.Thank u.