MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this program? class output { public static void main(String args[]) { StringBuffer s1 = new StringBuffer("Hello"); s1.setCharAt(1,x); System.out.println(s1); } } |
| A. | Xello |
| B. | Xxxxx |
| C. | Hxllo |
| D. | Hexlo |
| Answer» D. Hexlo | |