adplus-dvertising
frame-decoration

Question

What causes compilation to fail?
public class Test2 
{
    public static int x;
    public static int foo(int y) 
    {
        return y * 2;
    }
    public static void main(String [] args) 
    {
        int z = 5;
        assert z > 0; /* Line 11 */
        assert z > 2: foo(z); /* Line 12 */
        if ( z < 7 )
            assert z > 4; /* Line 14 */

        switch (z) 
        {
            case 4: System.out.println("4 ");
            case 5: System.out.println("5 ");
            default: assert z < 10;
        }

        if ( z < 10 )
            assert z > 4: z++; /* Line 22 */
        System.out.println(z);
    }
}public class Test 
{ 
    public void foo() 
    {
        assert false; /* Line 5 */
        assert false; /* Line 6 */
    } 
    public void bar()
    {
        while(true)
        {
            assert false; /* Line 12 */
        } 
        assert false;  /* Line 14 */
    } 
}

a.

Line 5

b.

Line 6

c.

Line 12

d.

Line 14

Posted under Java Programming

Answer: (d).Line 14

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What causes compilation to fail?

Similar Questions

Discover Related MCQs

Q. Which statement is true?

Q. Which of the following statements is true?

Q. Which of the following statements is true?

Q. ____________method can be given parameters via using command line arguments.

Q. Number of arguments can be passed to main() is?

Q. args in an array of String.

Q. ___________ is a very small Java framework that makes it trivial to parse command line parameters.

Q. Which tab is used to pass command line argument in eclipse?

Q. Recursion in Java is a way of calling the method from within the same method. State TRUE or FALSE.

Q. Java uses ___ type of memory to implement Recursion.

Q. Java uses Stack type memory instead of Heap type memory in implementing Recursion because of ___ feature of STACK.

Q. Recursion in Java applies to ___.

Q. Uses are Recursion in Java are___.

Q. Which is better in terms of memory utilization Recursion or Loops in Java?

Q. Which is the common problem with Recursive methods in Java?

Q. Recursion usually stops when the Java Runtimeencounters an IF or ELSE statement with a RETURN statement. State TRUE or FALSE.

Q. Attempting to call a method recursively without a proper RETURN statement leads to ___.

Q. A Java program with recursion can be completed with few lines of code when compared to using Loops. State TRUE or FALSE.

Q. It is difficultto write a program with recursion than using multiple loops. State TRUE or FALSE.

Q. A Recursive method does not need to return a value always. State TRUE or FALSE.