What will be the output of following program ?
public class Prg
{
public static void main(String args[])
{
System.out.print('A' + 'B');
}
}
1
AB
2
195
3
131
4
Error
5
Question Not Attempted
What will be the output of following program ?
public class Prg
{
public static void main(String args[])
{
System.out.print('A' + 'B');
}
}