Line1
Line3
Line4
Line5
第1题:
A.1
B.2
C.3
D.4
第2题:
int[][] myarray3=new int[3][]{new int[3]{5,6,2},new int[5]{6,9,7,8,3},new
int[2]{3,2}};myarray3[2][2]的值是( )。
第3题:
● 有一段C 程序如下,执行后,其运行结果为 (52) 。
int f(int a) {
auto int b = 0;
static int c = 3;
b ++; c++;
return(a+b+c);
}
main() {
int a=2,i;
for(i=0; i<3; i++) printf("%d, ",f(a));
}
(52)
A. 7,8,9,
B. 7,7,7,
C. 6,7,8,
D. 9,8,7,
第4题:
在下面的函数声明中,存在着语法错误的是()。
第5题:
现有如下五个声明: int a_really_really_really_long_variable_name = 5; int _hi =6; int big = Integer.getInteger("7"); int $dollars = 8; int %percent = 9; 有几个可以通过编译?()
第6题:
现有: 1. class Synapse { 2. protected int gap() { return 7; } 3. } 4. 5. class Creb extends Synapse { 6. // insert code here 7. } 分别插入到第 6 行,哪三行可以编译?()
第7题:
1. class SuperFoo { 2. SuperFoo doStuff(int x) { 3. return new SuperFoo(); 4. } 5. } 6. 7. class Foo extends SuperFoo { 8. //insert code here 9. } 下面哪三项分别插入到第8行,可以编译?()
第8题:
现有: 1. interface Altitude { 2. //insert code here 3. } 和4个声明: int HIGH = 7; public int HIGH = 7; abstract int HIGH = 7; interface int HIGH = 7; 分别插入到第2行,有多少行可以编译?()
第9题:
1
2
3
4
5
第10题:
0
1
2
3
4
第11题:
Line1
Line3
Line4
Line5
第12题:
2
3
4
5
1
第13题:
A.Line1
B.Line3
C.Line4
D.Line5
第14题:
有如下程序 float fun (int x,int y){return(x+y);} main() { int a=2,b=5,c=8; printf("%3.Of\n",fun((int)fun(a+c,B) ,(a-C) )) } 程序运行后的输出结果为_______。
A.编译出错
B.9
C.21
D.9
第15题:
现有如下程序段
#include "stdio.h"
int *fun(int *a,int *b)
{int c;
c=*a%*b;
return &c;}
main()
{int a=5,b=19,*c;
c=fun(&a,&b);
printf("%d\n",++*c);}
则程序段执行后的结果为
A.8
B.7
C.6
D.5
第16题:
1.class SuperFo{ 2. SuperFo doStuff(int x){ 3.return new SuperFo() 4.} 5.} 6. 7.class Foo extends SuperFo{ 8.//insert code here 9.} 和四个声明: Foo doStuff(int x){return new Foo();} Foo doStuff(int x){return new SuperFoo();} SuperFoo doStuff(int x){return new foo();} SuperFoo doStuff(int y){return new SuperFoo();} 分别插入到第8行,有几个可以通过编译 ()
第17题:
现有如下五个声明: Linel: int a_really_really_really_long_variable_name=5 Line2: int _hi=6; Line3: int big=Integer. getlnteger("7”); Line4:int $dollars=8; line5: int %opercent=9; 哪行无法通过编译?()
第18题:
int a_really_really_really_long_variable_name=5; int _hi=6; int big=Integer.getInteger(“7”); int $dollars=8; int %percent=9; 有几个可以通过编译?()
第19题:
现有如下五个声明: Linel: int a_really_really_really_long_variable_name=5 ; Line2: int _hi=6; Line3: int big=Integer. getlnteger("7”); Line4:int $dollars=8; line5: int %opercent=9; 哪行无法通过编译?()
第20题:
1
2
3
4
第21题:
9
2
6
越界
第22题:
Line1
Line3
Line4
Line5
第23题:
BC(int a, int)
BC(int, int)
BC(int, int=5)
BC(int x=6, int y)
第24题:
1,2,3,6,8,7,5,4,10,9,
3,4,2,7,9,8,6,5,11,10,
2,3,1,6,8,7,5,4,10,9,
2,4,3,9,12,12,11,11,18,9