java的题,请帮忙做下!谢谢!
帮忙啊!谢谢。1以下的选项中能正确表示java语言中的一个整型常量的是()选项:a、A)Integer.MAX_VALUEb、B)8.8Fc、C)2.0E16d、D)tr...
帮忙啊!谢谢。
1 以下的选项中能正确表示java语言中的一个整型常量的是()
选项:
a、A)Integer.MAX_VALUE
b、B)8.8F
c、C)2.0E16
d、D)true
2 以下的选项中能正确表示java语言中的一个整形常量的是
选项:
a、A 12
b、B -20
c、C 1,000
d、D 4 5 6
3 以下的选项中能正确表示java语言中的一个double型常量的是()
选项:
a、A)Float.MIN_VALUE
b、B)1.8e-6F
c、C)2.0
d、D)'abcf'
4 以下的变量定义语句中,合法的是()
选项:
a、A)float $_*5=3.4F
b、
c、B)byte b1=15678
d、
e、 C)double a=Double.MAX_VALUE
f、
g、D)int _abc_=3721L
5 下列最终属性(常量)i的定义中,正确的是()
选项:
a、A)static final double I
b、
c、B)abstract final int i=8
d、
e、 C)final double i=3.14159
f、
g、D)float i=1.2f
6 下列的变量定义中错误的是:
选项:
a、A)int _a=123
b、
c、B)long j=12345678900L
d、
e、 C)int m,n
f、
g、D)static i=100
7 下列的变量定义中,正确的是()
选项:
a、A)boolean b1="true"
b、
c、B)float x=6.6
d、
e、 C)byte i=200
f、
g、D)double y
8 a、A)int a
b、b
c、
d、B)float a,b1=1.23f
e、
f、 C)char ch1='d',ch2='\''
g、
h、D)public int i=100,j=2,k
9 下列的变量定义中,错误的是
选项:
a、A int 6_a
b、
c、B float a
d、
e、C int i=Integer.MAX_VALUE
f、
g、D static int i=100
10 如下哪个语句正确说明了native方法?
选项:
a、A、 public native void test()
b、
c、 B、public native void test(){}
d、 C、public void native test()
e、
f、 D、public native test(){}
11 已知表达式int m[] = {0, 1, 2, 3, 4, 5, 6 }; 下面哪个表达式的值与数组下标量总数相等?
选项:
a、A、 m.length()
b、 B、m.length
c、 C、m.length()+1
d、 D、m.length+1
12 已知如下代码: switch (m) { case 0: System.out.println("Condition 0"); case 1: System.out.println("Condition 1"); case 2: System.out.println("Condition 2"); case 3: System.out.println("Condition 3");break; default: System.out.println("Other Condition"); } 当m 的值为什么时输出"Condition 2"?
13 下面代码执行后的输出是什么? outer: for(int i=0;i<3; i++) inner: for(int j=0;j<2;j++) { if(j==1) continue outer; System.out.println(j+ "and "+i); }
14 已知如下代码: public class Test { public static void main(String arg[]) { int i = 5; do { System.out.println(i); } while (--i>5) System.out.println("finished"); } } 执行后的输出是什么?
15 下面句话是正确的?
选项:
a、A、 >> 是算术右移操作符.
b、 B、>> 是逻辑右移操作符.
c、 C、>>> 是算术右移操作符
d、 D、>>> 是逻辑右移操作符 展开
1 以下的选项中能正确表示java语言中的一个整型常量的是()
选项:
a、A)Integer.MAX_VALUE
b、B)8.8F
c、C)2.0E16
d、D)true
2 以下的选项中能正确表示java语言中的一个整形常量的是
选项:
a、A 12
b、B -20
c、C 1,000
d、D 4 5 6
3 以下的选项中能正确表示java语言中的一个double型常量的是()
选项:
a、A)Float.MIN_VALUE
b、B)1.8e-6F
c、C)2.0
d、D)'abcf'
4 以下的变量定义语句中,合法的是()
选项:
a、A)float $_*5=3.4F
b、
c、B)byte b1=15678
d、
e、 C)double a=Double.MAX_VALUE
f、
g、D)int _abc_=3721L
5 下列最终属性(常量)i的定义中,正确的是()
选项:
a、A)static final double I
b、
c、B)abstract final int i=8
d、
e、 C)final double i=3.14159
f、
g、D)float i=1.2f
6 下列的变量定义中错误的是:
选项:
a、A)int _a=123
b、
c、B)long j=12345678900L
d、
e、 C)int m,n
f、
g、D)static i=100
7 下列的变量定义中,正确的是()
选项:
a、A)boolean b1="true"
b、
c、B)float x=6.6
d、
e、 C)byte i=200
f、
g、D)double y
8 a、A)int a
b、b
c、
d、B)float a,b1=1.23f
e、
f、 C)char ch1='d',ch2='\''
g、
h、D)public int i=100,j=2,k
9 下列的变量定义中,错误的是
选项:
a、A int 6_a
b、
c、B float a
d、
e、C int i=Integer.MAX_VALUE
f、
g、D static int i=100
10 如下哪个语句正确说明了native方法?
选项:
a、A、 public native void test()
b、
c、 B、public native void test(){}
d、 C、public void native test()
e、
f、 D、public native test(){}
11 已知表达式int m[] = {0, 1, 2, 3, 4, 5, 6 }; 下面哪个表达式的值与数组下标量总数相等?
选项:
a、A、 m.length()
b、 B、m.length
c、 C、m.length()+1
d、 D、m.length+1
12 已知如下代码: switch (m) { case 0: System.out.println("Condition 0"); case 1: System.out.println("Condition 1"); case 2: System.out.println("Condition 2"); case 3: System.out.println("Condition 3");break; default: System.out.println("Other Condition"); } 当m 的值为什么时输出"Condition 2"?
13 下面代码执行后的输出是什么? outer: for(int i=0;i<3; i++) inner: for(int j=0;j<2;j++) { if(j==1) continue outer; System.out.println(j+ "and "+i); }
14 已知如下代码: public class Test { public static void main(String arg[]) { int i = 5; do { System.out.println(i); } while (--i>5) System.out.println("finished"); } } 执行后的输出是什么?
15 下面句话是正确的?
选项:
a、A、 >> 是算术右移操作符.
b、 B、>> 是逻辑右移操作符.
c、 C、>>> 是算术右移操作符
d、 D、>>> 是逻辑右移操作符 展开
3个回答
展开全部
1 c2 abd 3c 4a 5a 6abd 7acd 8? 9a 10 b 11b 12 2 但Condition 3也输出
13 0 and 0 0 and 1 0 and 2
14 5 finished
15 ad
13 0 and 0 0 and 1 0 and 2
14 5 finished
15 ad
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
1、A
2、A
3、C
4、C
5、C
6、D
7、D
8、D
9、A
10、A
11、B
12、M=2
13、0 and 0
0 and 1
0 and 2
14、5
finished
15、A D
2、A
3、C
4、C
5、C
6、D
7、D
8、D
9、A
10、A
11、B
12、M=2
13、0 and 0
0 and 1
0 and 2
14、5
finished
15、A D
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
1,a
2,ab
3,c
4,c
5,c
6,d
7,d
8,题目有问题
9,a
10,b
11,d
12,2
13,2 and 0
2 and 1
2 and 2
14,打印5 finished
15,bd
2,ab
3,c
4,c
5,c
6,d
7,d
8,题目有问题
9,a
10,b
11,d
12,2
13,2 and 0
2 and 1
2 and 2
14,打印5 finished
15,bd
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询