niusouti.com

which expression is wrong about learning students' names? ()A. It shows students that the teacher is interested in them.B. The teacher could ask individual students to assist with demonstrations.C. The teacher could ask individual students to assist with

题目
which expression is wrong about learning students' names? ()

A. It shows students that the teacher is interested in them.

B. The teacher could ask individual students to assist with demonstrations.

C. The teacher could ask individual students to assist with equipment in the class.

D. It shows the teacher is responsible.


相似考题
更多“which expression is wrong about learning students' names? () ”相关问题
  • 第1题:

    下面哪一个是错误的?

    A.使用len(列表名)测量元素的个数names_list=["zhangsan","lisi","wangwu"]print(len(names_list))

    B.使用列表名[下标]获取列表的某个元素,例如:names_list=["zhangsan","lisi","wangwu"]print(names_list[2])

    C.向列表中添加新元素有三个方法:append、extend、insert,例如:names_list=["zhangsan","lisi","wangwu"]names_list.append("zhaoliu")names_list.extend(["zhaoliu","liqi"])names_list.insert(1,"zhaoliu")print(names_list)

    D.已有列表nums=[11,22,33,44,55],使用while循环遍历列表nums=[11,22,33,44,55]i=0 whilei

    print(nums[i])i+=1


    正确答案:D

  • 第2题:

    5、关于E-learning的说法,下列正确的是()

    A.E-learning是通过因特网进行的教育及相关服务

    B.E-learning能够完全取代面授学习

    C.E-learning指的就是远距离教育

    D.E-learning能够代替传统的课堂教学

    E.E-learning只是对网上课程的学习


    E-learning 是通过因特网进行的教育及相关服务

  • 第3题:

    多选题:下面哪个是错误的用python实现存储n个人的姓名?

    A.names1=n*[0] for i in range(n): names1[i]=input('输入{}个人的姓名:'.format(i+1))

    B.names2=[] for i in range(n): names.append(input('输入{}个人的姓名:'.format(i+1)))

    C.names3=[] for i in range(n): name=input('输入{}个人的姓名:'.format(i+1)) names3+=name

    D.names4=[] for i in range(n): names4[i]=input('输入{}个人的姓名:'.format(i+1))

    E.names5=[] for i in range(n): name=input('输入{}个人的姓名:'.format(i+1)) names5+=[name]


    Python 中的变量赋值需要数据类型声明

  • 第4题:

    30、关于E-learning的说法,下列正确的是()

    A.E-learning是通过因特网进行的教育及相关服务

    B.E-learning能够完全取代面授学习

    C.E-learning指的就是远距离教育

    D.E-learning能够代替传统的课堂教学

    E.E-learning只是对网上课程的学习


    E-learning 是通过因特网进行的教育及相关服务

  • 第5题:

    关于E-learning的说法,下列正确的是()

    A.E-learning是通过因特网进行的教育及相关服务

    B.E-learning能够完全取代面授学习

    C.E-learning指的就是远距离教育

    D.E-learning能够代替传统的课堂教学

    E.E-learning只是对网上课程的学习


    e-learning是指通过因特网进行的教育及相关服务;e-learning改变教学者的作用和教与学之间的关系,从而改变了教育的本质;e-learning提供学习者一种全新的方式进行学习,提供了学习的随时随地性,从而为终身学习提供了可能

  • 第6题:

    for重复结构处理计数器控制循环的所有细节。for结构的一般格式如下: for(expression1, expression2, expression3) statement 其中expression1初始化循环控制变量,expression2是循环条件,expression3递增控制变量。


    B