MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this program?public class output { public static void main(String args[]) { StringBuffer c = new StringBuffer("InterviewMania"); System.out.println(c.length()); } } |
| A. | 11 |
| B. | 12 |
| C. | 13 |
| D. | 14 |
| E. | 15 |
| Answer» E. 15 | |