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. | Hello hello |
| B. | World world |
| C. | Hello world |
| D. | World hello |
| Answer» D. World hello | |