Question
1. x++;
2. x = x + 1;
3. x += 1;
4. x =+ 1;
a.
1, 2 & 3
b.
1 & 4
c.
1, 2, 3 & 4
d.
3 & 2
Posted under Java Programming
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
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;
Similar Questions
Discover Related MCQs
Q. Decrement operator, −−, decreases the value of variable by what number?
View solution
Q. Which of these statements are incorrect?
View solution
Q. Which of these is not a bitwise operator?
View solution
Q. Which operator is used to invert all the digits in a binary representation of a number?
View solution
Q. On applying Left shift operator, <<, on integer bits are lost one they are shifted past which position bit?
View solution
Q. Which right shift operator preserves the sign of the value?
View solution
Q. Which of these statements are incorrect?
View solution
Q. What is the output of relational operators?
View solution
Q. Which of these is returned by “greater than”, “less than” and “equal to” operators?
View solution
Q. Which of the following operators can operate on a boolean variable?
1. &&
2. ==
3. ?:
4. +=
View solution
Q. Which of these operators can skip evaluating right hand operand?
View solution
Q. Which of these statements is correct?
View solution
Q. Which of these have highest precedence?
View solution
Q. What should be expression1 evaluate to in using ternary operator as in this line?
expression1 ? expression2 : expression3
View solution
Q. What is the value stored in x in following lines of code?
int x, y, z;
x = 0;
y = 1;
x = y = z = 8;
View solution
Q. What is the order of precedence (highest to lowest) of following operators?
1. &
2. ^
3. ?:
View solution
Q. Which of these statements are incorrect?
View solution
Q. Which of these selection statements test only for equality?
View solution
Q. Which of these are selection statements in Java?
View solution
Q. Which of the following loops will execute the body of loop even when condition controlling the loop is initially false?
View solution
Suggested Topics
Are you eager to expand your knowledge beyond Java Programming? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!