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 value stored in x in the following lines of Java code? int x, y, z; x = 0; y = 1; x = y = z = 8;
Solution |
3
Discuss
|
What is the order of precedence (highest to lowest) of following operators? 1. & 2. ^ 3. ?:
Solution |
4
Discuss
|
What will be the output of the following Java code?
Solution |
5
Discuss
|
Which of these operators can skip evaluating right hand operand?
Solution |
6
Discuss
|
What will be the output of the following Java program?
Solution |
7
Discuss
|
What will be the output of the following Java program?
Solution |
8
Discuss
|
Which of these statements are incorrect?
Solution |
9
Discuss
|
What will be the output of the following Java program?
Solution |
10
Discuss
|
What will be the output of the following Java program?
Solution |
# | Quiz |
Copyright © 2020 Inovatik - All rights reserved