logo

CuriousTab

CuriousTab

Discussion


Home Java Programming Objects and Collections Comments

  • Question
  • What will be the output of the program?
    public class Test 
    { 
        public static void main (String args[]) 
        {
            String str = NULL; 
            System.out.println(str); 
        } 
    }
    


  • Options
  • A. NULL
  • B. Compile Error
  • C. Code runs but no output
  • D. Runtime Exception

  • Correct Answer
  • Compile Error 

    Explanation
    Option B is correct because to set the value of a String variable to null you must use "null" and not "NULL".

    Objects and Collections problems


    Search Results


    • 1. 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); 
          } 
      }
      

    • Options
    • A. Prints: false, false, false
    • B. Prints: false, false, true
    • C. Prints: false, true, false
    • D. Prints: false, true, true
    • Discuss
    • 2. What will be the output of the program?
      public class Test 
      { 
          private static float[] f = new float[2]; 
          public static void main (String[] args) 
          {
              System.out.println("f[0] = " + f[0]); 
          } 
      }
      

    • Options
    • A. f[0] = 0
    • B. f[0] = 0.0
    • C. Compile Error
    • D. Runtime Exception
    • Discuss
    • 3. 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 */
          } 
      }
      

    • Options
    • A. Compilation will succeed.
    • B. Compilation will fail at line 3.
    • C. Compilation will fail at line 5.
    • D. Compilation will fail at line 15.
    • Discuss
    • 4. What will be the output of the program?
      import java.util.*; 
      class H 
      {
          public static void main (String[] args) 
          { 
              Object x = new Vector().elements(); 
              System.out.print((x instanceof Enumeration)+","); 
              System.out.print((x instanceof Iterator)+","); 
              System.out.print(x instanceof ListIterator); 
          } 
      }
      

    • Options
    • A. Prints: false,false,false
    • B. Prints: false,false,true
    • C. Prints: false,true,false
    • D. Prints: true,false,false
    • Discuss
    • 5. 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]); 
          } 
      }
      

    • Options
    • A. 0 
    • B. null
    • C. Compile Error
    • D. NullPointerException at runtime
    • Discuss
    • 6. What will be the output of the program?
      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 */
          } 
      }
      
      And the command line invocation:

      > java Test red green blue


    • Options
    • A. baz =
    • B. baz = null
    • C. baz = blue
    • D. Runtime Exception
    • Discuss
    • 7. 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()); 
      }
      

    • Options
    • A. 42
    • B. Runtime Exception
    • C. Compile Error at line 2
    • D. Compile Error at line 5
    • Discuss
    • 8. Which two statements are true about comparing two instances of the same class, given that the equals() and hashCode() methods have been properly overridden?

      1. If the equals() method returns true, the hashCode() comparison == must return true.
      2. If the equals() method returns false, the hashCode() comparison != must return true.
      3. If the hashCode() comparison == returns true, the equals() method must return true.
      4. If the hashCode() comparison == returns true, the equals() method might return true.

    • Options
    • A. 1 and 4
    • B. 2 and 3
    • C. 3 and 4
    • D. 1 and 3
    • Discuss
    • 9. 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);
      

    • Options
    • A. x2.equals(x1)
    • B. x3.hashCode() == x4.hashCode()
    • C. x5.hashCode() != x6.hashCode()
    • D. x8.equals(x7)
    • Discuss
    • 10. 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.

    • Options
    • A. 1 and 2
    • B. 2 and 3
    • C. 3 and 4
    • D. 1 and 3
    • Discuss


    Comments

    There are no comments.

Enter a new Comment