MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this program? class output { public static void main(String args[]) { StringBuffer c = new StringBuffer("Hello"); c.delete(0,2); System.out.println(c); } } |
| A. | He |
| B. | Hel |
| C. | lo |
| D. | llo |
| Answer» E. | |