GAT Subject
Engineering
Computer Science Civil Engineering Chemical Engineering Agricultural Engineering Mechanical Engineering Electronics and Communication
2. | How many times the while loop will get executed if a short int is 2 byte wide? | |
A. | 254 times | |
B. | 255 times | |
C. | 256 times | |
D. | Infinite times | |
Answer: Option B | |
Explanation: | |
The while(j <= 255) loop will get executed 255 times. The size short int(2 byte wide) does not affect the while() loop. |
|
Tutorial Link: |