adplus-dvertising
frame-decoration

Question

What is the output of this 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);
        } 
    }

a.

5

b.

6

c.

14

d.

compilation error

Posted under Java Programming

Answer: (b).6

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of this program?

Similar Questions

Discover Related MCQs

Q. The while loop repeats a set of code while the condition is not met?

Q. What is true about a break?

Q. What is true about do statement?

Q. Which of the following is used with the switch statement?

Q. Which of the following is not a decision making statement?

Q. Which of the following is not a valid jump statement?

Q. From where break statement causes an exit?

Q. Which of the following is not a valid flow control statement?

Q. Can 8 byte long data type be automatically type cast to 4 byte float data type?

Q. Decrement operator '--' decreases the value of variable by what number?

Q. What is/are highest order precedence operator(s) in Java?

Q. The && and || operators

Q. Which of the following is the correct expression that evaluates to true if the number x is between 1 and 100 or the number is negative?

Q. Select from among the following character escape code which is not available in Java.

Q. With x = 0, which of the following are legal lines of Java code for changing the value of x to 1?

1. x++;
2. x = x + 1;
3. x += 1;
4. x =+ 1;

Q. Which of these is returned by "greater than", "less than" and "equal to" operators?

Q. Which of the following operators can operate on a boolean variable?

Q. Which of these statements is correct?

Q. What is the order of precedence (highest to lowest) of following operators?

1. &
2. ^
3. ?:

Q. _______ is not a flow control statement in Java.