What will be the output of the following Java program?
class leftshift_operator
{
public static void main(String args[])
{
byte x = 64;
int i;
byte y;
i = x << 2;
y = (byte) (x << 2)
System.out.print(i + " " + y);
}
}
0 64
64 0
0 256
256 0
Quiz Recommendation System API Link - https://fresherbell-quiz-api.herokuapp.com/fresherbell_quiz_api
# | Quiz |
---|---|
1
Discuss
|
What will be the output of the following Java program?
Solution |
2
Discuss
|
What is the output of relational operators?
Solution |
3
Discuss
|
Which of these have highest precedence?
Solution |
4
Discuss
|
What will be the output of the following Java code?
Solution |
5
Discuss
|
Which of the following operators can operate on a boolean variable? 1. && 2. == 3. ?: 4. +=
Solution |
6
Discuss
|
Which right shift operator preserves the sign of the value?
Solution |
7
Discuss
|
What will be the output of the following Java code?
Solution |
8
Discuss
|
Which operator is used to invert all the digits in a binary representation of a number?
Solution |
9
Discuss
|
Can 8 byte long data type be automatically type cast to 4 byte float data type?
Solution |
10
Discuss
|
What will be the output of the following Java code?
Solution |
# | Quiz |
Copyright © 2020 Inovatik - All rights reserved