-
What is the difference between a break statement and a continue statement
A break statement results in the termination of the statement to which it applies (switch,for, do, or while). A continue statement is used to end the current loop iteration andreturn control to the loop statement.
-
Is it true the JAVA is realy a plateform indepandent?
no, because Java does not support multiple inheritance directly.
-
-
-
-
-
-
Which containers use a border Layout as their default layout
The window, Frame and Dialog classes use a border layout as their default layout.
-
What is the difference between static and non-static variables
A static variable is associated with the class as a whole rather than with specific instancesof a class. Non-static variables take on unique values with each object instance.
-
What is the range of the char type?">
What is the range of the char type?
A) 0 to 215-1 B) 0 to 216-1 C) 0 to 215 D) 0 to 216
-
-
Java is a Programming Language.
A) TrueB) False
-
-
-
-
-
State true or false :- Final methods can be overridden.
A) TrueB) False
-
-
What value does readLine() return when it has reached the end of a file
The readLine() method returns null when it has reached the end of a file.
-
Java Interview Questions
Ans