(Choose 1 answer)
public class Test{
byte b = 2;
public static void main(String[] args){
A. b=6
B. No output because of
byte b1 = 3;b=b*b1;
System.out.println("b="+b);
compile error at line:
System.out.println("b="+b):
What is the output?
C. No output because of compile error at line: b = b*b1:
D. No output because of compile error at line: byte b = 3:
E. No output because of compile error at line: byte b = 2:
}
}
Exit (11