单选题 下列哪一项不是Java的特性()。

A、 分布式
B、 可移植
C、 多线程
D、 面向过程
下载APP答题
由4l***kh提供 分享 举报 纠错

相关试题

单选题 下列标识符中,()哪个是不正确的变量名。

A、int_1(合法,下划线连接)
B、thing$(合法,$是允许的标识符字符)
C、thing1(合法)
D、one-hundred(包含连字符,非法)

单选题 下列标识符中,()是正确的变量名。

A、int(Java关键字,不能作为变量名)
B、1thing(标识符不能以数字开头)
C、thing1(合法,字母开头,后接字母、数字)
D、one-hundred(标识符不能包含连字符,可用下划线)

单选题 下列算术运算符中优先级最高的是()。

A、*和/
B、%
C、++和--
D、>和<

单选题 Java字节码文件的扩展名为()。

A、.class
B、.java
C、.com
D、.html

单选题 执行下列语句后,i和n的值为()。 int i=10; int n=i++%5

A、10,0
B、10,1
C、11,0
D、11,1

单选题 Java源代码的扩展名为()。

A、.class
B、.java
C、.com
D、.html

单选题 编译运行以下程序后,关于输出结果的说明,正确的是()。 public class Test2 { public static void main(String args[]) { int x=1; System.out.println("value is:"+(x>4)?6.6:6); } }

A、value is:6.6
B、value is:6
C、value is:6.0
D、编译错误

单选题 执行下列语句后,i和n的值为()。 int i=10; int n=++i%5

A、10,0
B、10,1
C、11,0
D、11,1