Is a class an object?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

java Technical questions asked by JPMC

0 Answers   JPMorgan Chase,


List some java keywords sun like c, c + + keywords?

0 Answers  


How to do encapsulation in java?

0 Answers  


Is it possible to write JAVA program without including any of the packages,such as "import java.io.*"; bcoz I instantly wrote a code without "import..." statement and runned the program on command Line & it worked. the code is: class Person { String name; int age; Person(String s,int a) { name = s; age = a; } accept() { System.out.println(name+"Hi!!!!!"); System.out.println(age); } } class Demo { public static void main(Strings args[])throws IOException { String name = args[0]; int age = Integer.parseInt(args[1]); Person p = new Person(name,age); p.accept(); } }

3 Answers  


What are disadvantages of java?

0 Answers  






How does static modifier work?

1 Answers   Wipro,


What is a hashmap used for?

0 Answers  


Explain why wait(), notify() and notifyall() methods are in object class rather than in the reading class?

0 Answers  


What are the fileinputstream and fileoutputstream?

0 Answers  


Which Math method is used to calculate the absolute value of a number?

3 Answers   Accenture,


Which list does not allow duplicates in java?

0 Answers  


Can a abstract class be defined without any abstract methods?

0 Answers  


Categories