What is the range of a character variable?
No Answer is Posted For this Question
Be the First to Post Answer
What is meant by Encapsulation? Can you write a class to explain encapsulation?
How the elements are organized in GridBagLayout?
If there are two notepad opened and working on it . is this a process or thread? computer based Live Example to differentiate between Thread , Process , and Multi tasking ?
How do you declare a string variable?
What is an interface in java? Explain
class A { public void disp(int a,int b) { System.out.println("hai"); } } class B { public void disp(int a,int b,int c) { System.out.println("hai"); } } above program is overloading or overriding?
Define array. Tell me about 2-D array.
Is it compulsory for a try block to be followed by a catch block in java for exception handling?
Differentiate between the constructors and methods in java?
Explain the difference between abstract class and interface in java?
Why enumeration is faster than iterator?
we know that every java prog must follows OOPS Principles. Anybody can answer, HOW THE FOLLOWING PROGRAM FOLLOWS OOPS CONCEPTS i.e, Inheritance,Polymarphism,Encapsulation? class a{ public static void main(String args[]){ System.out.println("Hello World"); } }