adplus-dvertising
frame-decoration

Question

Which of these statements are incorrect?

a.

The left shift operator, <<, shifts all of the bits in a value to the left specified number of times

b.

The right shift operator, >>, shifts all of the bits in a value to the right specified number of times

c.

The left shift operator can be used as an alternative to multiplying by 2

d.

The right shift operator automatically fills the higher order bits with 0

Posted under Java Programming

Answer: (d).The right shift operator automatically fills the higher order bits with 0

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Which of these statements are incorrect?

Similar Questions

Discover Related MCQs

Q. What is the output of relational operators?

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?

1. &&

2. ==

3. ?:

4. +=

Q. Which of these operators can skip evaluating right hand operand?

Q. Which of these statements is correct?

Q. Which of these have highest precedence?

Q. What should be expression1 evaluate to in using ternary operator as in this line?

expression1 ? expression2 : expression3

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;

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

1. &
2. ^
3. ?:

Q. Which of these statements are incorrect?

Q. Which of these selection statements test only for equality?

Q. Which of these are selection statements in Java?

Q. Which of the following loops will execute the body of loop even when condition controlling the loop is initially false?

Q. Which of these jump statements can skip processing the remainder of the code in its body for a particular iteration?

Q. Which of this statement is incorrect?

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?