MCQOPTIONS
Saved Bookmarks
| 1. |
Determine output:public class Test{public static void main(String... args){int a=5 , b=6, c=7;System.out.println("Value is "+ b + c);System.out.println(a + b + c);System.out.println("String " + (b+c));}} |
| A. | alue is 67 18 String 13 |
| B. | alue is 13 18 String 13 |
| C. | alue is 13 18 String |
| D. | ompilation fails |
| E. | one of these |
| Answer» B. alue is 13 18 String 13 | |