Java Data Types, Variables and Arrays Mcqs

Our collections of Multiple choice questions and answers focuses on study of Java Data Types, Variables and Arrays . These questions are chosen from a collection of most authoritative and best reference books on Java Data Types, Variables and Arrays. Our aim is to prepare an individual for competitive exams like NTS, GAT, ECAT, University and College entrance exams and various tests and job interviews. One should practice our Mcqs to assimilate Data Types, Variables and Arrays comprehensively.

  1. Home
  2. »
  3. Languages
  4. »
  5. Programming Languages Mcqs
  6. »
  7. Java Programming Mcqs
  8. »
  9. Data Types Variables and Arrays...
  10. »
  11. Page 9

124.
What will be the output of the program?

public static void main(String[] args) 
{
    Object obj = new Object() 
    {
        public int hashCode() 
        {
            return 42;
        }
    }; 
    System.out.println(obj.hashCode()); 
}

42

Runtime Exception

Compile Error at line 2

Compile Error at line 5

125.
What will be the output of the program?

Note: The command line invocation:

> java Test red green blue


public class Test 
{ 
    public static void main (String[] args) 
    {
        String foo = args[1]; 
        String bar = args[2]; 
        String baz = args[3]; 
        System.out.println("baz = " + baz); /* Line 8 */
    } 
}

Baz =

Baz = null

Baz = blue

Runtime Exception

126.
What will be the output of the program?

public class Test 
{ 
    public static void main (String args[]) 
    {
        String str = NULL; 
        System.out.println(str); 
    } 
}

NULL

Compile Error

Code runs but no output

Runtime Exception

127.
What will be the output of the program?

package foo; 
import java.util.Vector; /* Line 2 */
private class MyVector extends Vector 
{
    int i = 1; /* Line 5 */
    public MyVector() 
    { 
        i = 2; 
    } 
} 
public class MyNewVector extends MyVector 
{
    public MyNewVector () 
    { 
        i = 4; /* Line 15 */
    } 
    public static void main (String args []) 
    { 
        MyVector v = new MyNewVector(); /* Line 19 */
    } 
}

Compilation will succeed.

Compilation will fail at line 3.

Compilation will fail at line 5.

Compilation will fail at line 15.

128.
What will be the output of the program?

public class Test 
{ 
    private static int[] x; 
    public static void main(String[] args) 
    { 
        System.out.println(x[0]); 
    } 
}

0

Null

Compile Error

NullPointerException at runtime

129.
What will be the output of the program?

import java.util.*; 
class I 
{
    public static void main (String[] args) 
    {
        Object i = new ArrayList().iterator(); 
        System.out.print((i instanceof List)+","); 
        System.out.print((i instanceof Iterator)+","); 
        System.out.print(i instanceof ListIterator); 
    } 
}

Prints: false, false, false

Prints: false, false, true

Prints: false, true, false

Prints: false, true, true

130.
Assuming that the equals() and hashCode() methods are properly implemented, if the output is “x = 1111”, which of the following statements will always be true?

x = 0;
if (x1.hashCode() != x2.hashCode() )  x = x + 1;
if (x3.equals(x4) )  x = x + 10;
if (!x5.equals(x6) ) x = x + 100;
if (x7.hashCode() == x8.hashCode() )  x = x + 1000;
System.out.println("x = " + x);

X2.equals(x1)

X3.hashCode() == x4.hashCode()

X5.hashCode() != x6.hashCode()

X8.equals(x7)

131.
Which of the following are true statements?

1. The Iterator interface declares only three methods: hasNext, next and remove.
2. The ListIterator interface extends both the List and Iterator interfaces.
3. The ListIterator interface provides forward and backward iteration capabilities.
4. The ListIterator interface provides the ability to modify the List during iteration.
5.The ListIterator interface provides the ability to determine its position in the List.

2, 3, 4 and 5

1, 3, 4 and 5

3, 4 and 5

1, 2 and 3

132.
Which statement is true for the class java.util.ArrayList?

The elements in the collection are ordered.

The collection is guaranteed to be immutable.

The elements in the collection are guaranteed to be unique.

The elements in the collection are accessed using a unique key.

133.
Which statement is true?

class Test1 
{
    public int value;
    public int hashCode() { return 42; }
}
class Test2 
{
    public int value;
    public int hashcode() { return (int)(value^5); }
}

Class Test1 will not compile.

The Test1 hashCode() method is more efficient than the Test2 hashCode() method.

The Test1 hashCode() method is less efficient than the Test2 hashCode() method.

Class Test2 will not compile.

134.
Which statement is true for the class java.util.HashSet?

The elements in the collection are ordered.

The collection is guaranteed to be immutable.

The elements in the collection are guaranteed to be unique.

The elements in the collection are accessed using a unique key.

135.
Which of the following statements about the hashcode() method are incorrect?

1. The value returned by hashcode() is used in some collection classes to help locate objects.
2. The hashcode() method is required to return a positive int value.
3. The hashcode() method in the String class is the one inherited from Object.
4. Two new empty String objects will produce identical hashcodes.

1 and 2

2 and 3

3 and 4

1 and 4

136.
What two statements are true about properly overridden hashCode() and equals() methods?

1. hashCode() doesn’t have to be overridden if equals() is.
2. equals() doesn’t have to be overridden if hashCode() is.
3. hashCode() can always return the same value, regardless of the object that invoked it.
4. equals() can be true even if it’s comparing different objects.

1 and 4

2 and 3

3 and 4

1 and 3

0Shares
0
Scroll to Top