|
Related Questions |
View Answer |
|
What are the two basic ways in which classes that can be run as threads may be defined?
|
View Answer
|
|
What are the problems faced by Java programmers who don't use layoutmanagers?
|
View Answer
|
|
What is the difference between an if statement and a switch statement?
|
View Answer
|
|
What is the List interface?
|
View Answer
|
|
Is the ternary operator written x : y ? z or x ? y : z ?
|
View Answer
|
|
What are the differences between Java & C++ in terms of its features?
|
View Answer
|
|
What is the purpose of the toolkit in the Abstract Window Toolkit (AWT)? How does AWT work?
|
View Answer
|
|
What is layout manager ? How does it work?
|
View Answer
|
|
Compare SWING components to standard AWT.
|
View Answer
|
|
What is Java Beans?
|
View Answer
|
|
What you know about Corba implementation in Java?
|
View Answer
|
|
What do you know about networking support in Java?
|
View Answer
|
|
What is it object serialization?
|
View Answer
|
|
How to make application thread-safe ?
|
View Answer
|
|
What is it reflection (introspection) ? Why is reflection possible in the Java language?
|
View Answer
|
|
Why are Java ARchive (JAR) files important?
|
View Answer
|
|
In Java, You can create a String object as: String str = "abc"; & String str = new String("abc"); Why cant a button object be created as : Button bt = "abc" Why is it compulsory to create a button object as: Button bt = new Button("abc"); Why is this not compulsory in String's case?
|
String str = new String("abc - Java Interview Questions & Answers">
View Answer
|
|
What are the main differences between Java and C++?
|
View Answer
|
|
What are interfaces?
|
View Answer
|
|
How can you achieve Multiple Inheritance in Java?
|
View Answer
|