参考答案和解析
参考答案:C
更多“There were students in the reading room. ”相关问题
  • 第1题:

    Janet as well as the other young people who ____ sent abroad by government ___ brought up in the small town.

    A. was;was
    B. was;were
    C. were ;were
    D. were ;was

    答案:D
    解析:
    引出定语从句的关系代词作从句的主语,而它又前指复数名词“people”,所以考虑到主谓一致谓语动词用“were”。一个名词后有“as well as”引出的短语时,单复数仍然以那个名词本身的单复数确定。此处主句主语是“Janet",单数第三人称,所以谓语用“was”。故选D。

  • 第2题:

    在主线程中启动一个子线程执行reading函数。 import threading import time import random def reading(): for i in range(10): print("reading",i) time.sleep(random.randint(1,2)) _______________________________ r.setDaemon(False) r.start() print("The End")

    A.r=threading.Thread(reading)

    B.r=threading.Thread(target=reading())

    C.r=threading.Thread(target=reading)

    D.r=Thread(target=reading)


    不需要调用任何方法

  • 第3题:

    创建students对象,_______语句可以选出第二个同学的身高。 students数据如下: age height weight 1 19 170 68 2 20 165 65 3 18 175 65

    A.students[1,'height']

    B.students.loc[2,'height']

    C.students.iloc[1, 1]

    D.students['height'][3]


    students.loc[2,'height'];students.iloc[1, 1]

  • 第4题:

    Janet as well as the other young people who__________sent abroad by the government
    __________brought up in the small town.

    A.was:was
    B.was;were
    C.were;were
    D.were;was

    答案:D
    解析:
    引出定语从句的关系代词作从句的主语,而它又前指复数名词people,所以考虑到主谓一致谓语动词用were。一个名词后有as well as引出的短语时.单复数仍然以那个名词本身的单复数确定。此处主句主语是Janet,单数第三人称,所以谓语用was。故选D。

  • 第5题:

    声明并创建一个学生类Student的对象s,下列语法格式正确的是()。

    A.Student s = Student();

    B.Student s;

    C.Student s = new Student();

    D.Student s = new ();


    C

  • 第6题:

    创建students对象,_______语句可以选出第二个同学的身高。 students数据如下: age height weight 1 19 170 68 2 20 165 65 3 18 175 65

    A.students.loc[2,'height']

    B.students.iloc[1, 1]

    C.students[1,'height']

    D.students['height'][3]


    students.loc[2,'height'];students.iloc[1, 1]