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
|
Which of these statements is correct?
Solution |
|
2
Discuss
|
Which of the following can be operands of arithmetic operators?
Solution |
|
3
Discuss
|
What will be the output of the following Java code?
Solution |
|
4
Discuss
|
What will be the output of the following Java program?
Solution |
|
5
Discuss
|
Which of these have highest precedence?
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
|
What is the order of precedence (highest to lowest) of following operators?
1. &
2. ^
3. ?:
Solution |
|
9
Discuss
|
Which of the following operators can operate on a boolean variable? 1. && 2. == 3. ?: 4. +=
Solution |
|
10
Discuss
|
What will be the output of the following Java program?
Solution |
| # | Quiz |
Copyright © 2020 Inovatik - All rights reserved