What is the super void?
No Answer is Posted For this Question
Be the First to Post Answer
Can you write a java class that could be used both as an applet as well as an application?
Which is the class in java?
Explain what access modifiers can be used for variables?
What is use of static method?
What is constant in programming?
Difference between overloading and overridding?
What is stop(), suspend(), resume() method?
Write a program to find maximum and minimum number in array?
What is method overloading with type promotion?
What is encapsulation? Elaborate with example?
Explain the available thread states in a high-level?
public class Test { public static void main(String ar[]) { Integer a = 10; Integer b =10; Integer c = 145; Integer d = 145; System.out.println(a==b); System.out.println(c==d); } }