Q.1.
The icon of Java program is taken from ___.
Q.2.
What will be the output of the following Java code? class increment { public static void main(String args[]) { int g = System.out.print(++g * 8); } }
Q.3.
In Java EE, EE stands for ___.
Q.4.
Which function is used to input int value in Java using Scanner class?
Q.5.
Select TWO correct ways of including (importing) package in our program?
Q.6.
Which is NOT the access specifier (visibility mode) in Java?
Q.7.
Java is Truly (Pure) _____________ Language?
Q.8.
Package is a collection of __________ .
Q.9.
Which function is used to input String value in Java using Scanner class?
Q.10.
Which function is used to input float value in Java using Scanner class?
Q.11.
Java was developed in which year
Q.12.
Which of the following classes belongs to util package in Java?
Q.13.
Which concept of Java is a way of converting real world objects in terms of class?
Q.14.
Which of the following personality is called as father of Java Programming language –
Q.15.
Which of the following classes belongs to lang package in Java?
Q.16.
Earlier name of Java Programming language was –
Q.17.
Java Programming was designed by ______
Q.18.
JRE stands for
Q.19.
JDK stands for
Q.20.
What will be the output of the following Java program? class mainclass { public static void main(String args[]) { boolean var1 = true; boolean var2 = false; if (var System.out.println(var1); else System.out.println(var2); } }