Java MCQ - English
An expression involving byte, int, and literal numbers is promoted to which of t
Home | Discussion ForumAn expression involving byte, int, and literal numbers is promoted to which of these?
Answer : A
View More Related Question
1) If an expression contains double, int, float, long, then whole expression will promoted into which of these data types?
2) Which of the following automatic type conversion will be possible?
3) What is the output of this program? class char_increment {
public static void main(String args[])
{
char c1 = 'D';
char c2 = 84;
c2++;
c1++;
System.out.println(c1 + " " + c2);
}
}
4) What is the prototype of the default constructor of this class? public class prototype { }
5) What is the error in this code? byte b = 50;
b = b * 50;
View Answer