MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this program?public class RightShift_Operator { public static void main(String args[]) { int a; a = 100; a = a >> 1; System.out.println(a); } } |
| A. | 10 |
| B. | 20 |
| C. | 30 |
| D. | 40 |
| E. | 50 |
| Answer» F. | |