MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the following program ?class Numbers{public static void main(String args[]){int a=20, b=10;if((a < b) && (b++ < 25)){System.out.println("This is any language logic");}System.out.println(b);}} |
| A. | 2 |
| B. | 1 |
| C. | 0 |
| D. | ompilation Error |
| Answer» D. ompilation Error | |