参考答案和解析
参考答案:C
更多“Of the fllowing sectors in Britain,()has experienced spectacular growth since the end of World War I. ”相关问题
  • 第1题:

    下列程序的输出结果为includevoid main( ){char * a[ ]={"hello","the","world"};c

    下列程序的输出结果为 #include<iostream.h> void main( ) { char * a[ ]={"hello","the","world"}; char * * pa=a; pa++; cout <<*pa<<end1; }

    A.hello

    B.the

    C.world

    D.hellotheworld


    正确答案:B
    解析:本题主要考查的是指针数组和指向指针的指针之间的关系,其中a是指针数组,pa是指向指针数组行的指针,所以pa自加1相当于指向下一行。

  • 第2题:

    影响硬盘容量的基本参数有()。

    A.Cylinders

    B.Heads

    C.Tracks

    D.Sectors


    参考答案:A, B, D

  • 第3题:

    4、以下语句的输出结果是: print("hello",end='+') print("world")

    A.hello+world

    B.hello+ world

    C.hello world

    D.hello+ world+


    B 解析:Mid(s$,i,n)表示从字符串s$的第i个字符开始向后截取n个字符,Len(s$)返回字符串s$的长度。

  • 第4题:

    下列程序的输出结果为includevoid main(){char*a[]={"hello","the","world"};char*

    下列程序的输出结果为 #include<iostream.h> void main() { char*a[]={"hello","the","world"}; char**pa=a; pa++; cout<<*pa<<end1; }

    A.hello

    B.the

    C.world

    D.hello the world


    正确答案:A
    解析:本题考查的是字符数组的初始化,选项B)中用3个元素初始化大小为2的数组,越界了;选项C)中应该是2行3列的数组,题中使用3行2列初始化;选项D)中数组合后应用方括号。

  • 第5题:

    87、如果输入start数据为2,输入end数据为4,给出下列程序的运行结果____ list1 = ["hello", "world", "python","java", "pascal"] start,end=int(input("输入start:")),int(input("输入end:")) list2=list1[start:end] print(list2)


    CX;80

  • 第6题:

    39、以下语句的输出结果是: print("hello",end='+') print("world")

    A.hello+world

    B.hello+ world

    C.hello world

    D.hello+ world+


    C