adplus-dvertising
frame-decoration

Question

What is the output of the Java code snippet?
int a=10, b=20;
int c = a++*2;
int d = --b*2;
System.out.println(c +"," + d);

a.

20,40

b.

22,40

c.

20,38

d.

22,38

Posted under Java Programming

Answer: (c).20,38

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 the Java code snippet?

Similar Questions

Discover Related MCQs

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?

Q. In general Bitwise logical operators are simply called?

Q. What is the input for Logical Operators?

Q. What is the output of any Logical operation in Java?

Q. Which is the Logical operator in Java that works with a Single Operand?

Q. Which among the following is a Logical Unary NOT operator in Java?

Q. Which among the following is a Short Circuit AND operator?

Q. Which among the following is a Short Circuit OR operator?

Q. What is the output of a Logical OR (|) operation if one of the inputs/operands is false?

Q. What is the output of Logical AND (&) operation if one of the inputs/operands is false?