-
-
-
What is the value of 111 % 13?
A) 3B) 5C) 7D) 9
-
What happens when you add a double value to a String
The result is a String object.
-
Java Persistance API
What is JPA, can we use JPA without hibernate (hibernate3.jar)? Explain with samples?
-
What is the range of the char type
The range of the char type is 0 to 2^16 - 1.
-
Which of the following classes is used to perform basic console I/O?
A) SystemB) SecurityManagerC) MathD) Runtime
-
-
Core Java Question
Will it compile and run?? If No ... please explain?
java
public class Test{
public static void main(String asd[]){
System.out.println(" Test!! ");
}
}
protected class A{
}
private class B extends A{
}
-
Java - How to convert string to charArray ?
String str="Welcome To GeekInterview.com"
How can convert the above string to charArray without using any buit-in function in java?
Anyone to know the answer.please help me? i am new to learn java. -
Java doesnot support Multiline comment
Skill/Topic: AWT & AppletsA) TrueB) False
-
-
-
What is a transient variable
A transient variable is a variable that may not be serialized.
-
-
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 Include and Import Statement
What is difference between #include and import statement?
-
-
Polymorphism
Explain polymorphism to your 7 year old nephew.
Java Interview Questions
Ans