MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this program? class Output { public static void main(String args[]) { char a = '@'; boolean x = Character.isLetter(a); System.out.print(x); } } |
| A. | b |
| B. | c |
| C. | B |
| D. | C |
| Answer» D. C | |