Java Concepts MCQ

int Integer = 24;
char String  = ‘I’;
System.out.print(Integer);
System.out.print(String);
Rohit Roy