

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of this program? class string_class { public static void main(String args[]) { String obj = "I LIKE JAVA"; System.out.println(obj.length()); } } |
A. | 9 |
B. | 10 |
C. | 11 |
D. | 12 |
Answer» D. 12 | |