What will be the output of the following program?
public class LiteralsTest {
public static void main(String[] args) {
String name = "Ram";
char section = 'A';
int rollNum = section;
boolean status = true;
System.out.println("Name: " + name);
System.out.println("Roll number: " + rollNum);
System.out.println("Result: " + status);
}
}