Cs study guide
Identify the output of the following program. String str = "Hellow"; System.out.println(str.indexOf('t));
-1
What will be the output of the following Java program? class selection_statements { public static void main(String args[]) { int var1 = 5; int var2 = 6; if ((var2 = 1) == var1) System.out.print(var2); else System.out.print(++var2); } }
2
How many objects will be created in the following? String a = new String("Interviewbit"); String b = new String("Interviewbit"); Strinc c = "Interviewbit"; String d = "Interviewbit";
4
What will be the output of the following Java program? class comma_operator { public static void main(String args[]) { int sum = 0; for (int i = 0, j = 0; i < 5 & j < 5; ++i, j = i + 1) sum += i; System.out.println(sum); } }
6
Find the output of the following code. int ++a = 100; System.out.println(++a);
Compile error
What is Truncation in Java?
Floating-point value assigned to an integer type
What will be the output of the following Java program? class output { public static void main(String args[]) { double a, b,c; a = 3.0/0; b = 0/4.0; c = 0/0.0; System.out.println(a); System.out.println(b); System.out.println(c); } }
NaN, Infinity,0.0
When an array is passed to a method, what does the method receive?
The reference of the array
What will be the output of the following Java program? class Abc { public static void main(String[]args) { String[] elements = { "for", "tea", "too" }; String first = (elements.length > 0) ? elements[0]: null; } }
The variable first is set to elements[0]
What will be the output of the following Java code? class String_demo { public static void main(String args[]) { char chars[] = {'a', 'b', 'c'}; String s = new String(chars); System.out.println(s); } }
abc
When is the object created with new keyword?
at run time
Which of these keywords can be used to prevent Method overriding?
final
Arrays in Java are
objects
What is the header (prototype) of the default constructor for the following class? public class Question{}
public Question()
Which of the following modifiers cannot be used for the constructor?
static