MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this program?public class string_Example { public static void main(String args[]) { String obj = "I " + "like " + "Interview Mania "; System.out.println(obj); } } |
| A. | Interview Mania |
| B. | InterviewMania |
| C. | i like |
| D. | like Interview |
| E. | I like Interview Mania |
| Answer» F. | |