adplus-dvertising
frame-decoration

Question

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

a.

1

b.

2

c.

3

d.

4

Posted under Java Programming

Answer: (b).2

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. An Arithmetic expression in Java involves which Operators or Operations?

Q. Choose the Compound Assignment Arithmetic Operators in Java below.

Q. Which is the arithmetic operator in Java that gives the Remainder of Division?

Q. Arithmetic operators +, -, /, * and % have which Associativity?

Q. Between Postfix and Prefix arithmetic operators in Java, which operators have more priority?

Q. Among Postfix Decrement and Prefix Incrementoperators in Java, which operator has less priority?

Q. Increment and Decrement arithmetic operators in Java has which Associativity?

Q. Choose the correct statement about Java Operators +, -, *, / and %.

Q. Among the operator groups (++, --)and (+, -, *, /, %) in Java, which group has higher priority?

Q. Choose the correct statement about Java Prefix and Postfix operations.

Q. What is the other name for Relational Operators in Java?

Q. How many minimum number of operands are required to use Comparison operators in Java?

Q. What are the types of data that can be used along with Relational operators in Java?

Q. Choose the Conditional operators of Java listed below.

Q. Which operator group has higher priority between (>, >=, <, <=) and (==, !=)?

Q. What is the data type of output of any Comparison Operation in Java?

Q. Among Relational operators and Assignment operators, which operators have higher priority?

Q. What are the two possible Logical Operator types?

Q. Boolean logical operators in Java work with?

Q. Bitwise logical operators in Java work with?