public class Test {public static void main(String[] args) {String a=args[1];String b=args[2];String c=args[3];} } 执行命令:java Test Red Green Blue c的值是()?
A. c has value of null
B. c has value of Blue
C. the code does not compile
D. the program throw an exception
下列数据类型中,()属于Java基本数据类型.
A. 结构类型
B. 接口
C. 无符号整数类型
D. 字符类型
下列保留字中书写正确的是()
A. Case
B. For
C. try
D. viod
下列语句的输出结果是()。 public class A{ public static voidmain(String[]args){ System.out.println(2>1); } }
A. true
B. false
C. 1
D. 0