Q. Find the output of the following code
Code:
int Integer = 24; char String = ‘I’; System.out.print(Integer); System.out.print(String);
β
Correct Answer: (D)
24 I
int Integer = 24; char String = ‘I’; System.out.print(Integer); System.out.print(String);
You must be Logged in to update hint/solution