Compare java and python.
No Answer is Posted For this Question
Be the First to Post Answer
class test { private static void main(String []adsf) { } } explain me that the above code is error or exception
What class is used to create Server side object?
What restrictions are placed on method overloading?
What is the difference between final, finally and finalize() in java?
Is hashset ordered?
Can an anonymous class be declared as implementing an interface and extending a class in java programming?
How do you do math powers in java?
What classes can be used to store arbitrary number of objects ?
Are static members inherited to sub classes?
Explain about the dynamic behavior of core java?
What is ‘is-a ‘ relationship in java?
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); } }