If a student has a problem with classroom work,he or she should______.
A. make an appointment with the professor a week before
B. approach a professor after class
C. seek the professor's help in his office
D. go to the professor's apartment
第1题:
This is a girl. She’s (11) English girl. Her name's Becky.She's twelve. She’s in (12) 0f No.l Middle School in Beijing. She studies(学习) (13) in it. Mr Liu is .her Chinese teacher.(14 ) name is Liu Yong. He-s a good teacher.He reaches(教)her Chinese very well. Her home .(15) number is(010)65268559. He loves his students very much.
Becky's father and mother (16) teachers. Her father is (17) Green.
(18) works(l作) in Beijing now. He teaches us English. He (19) to work(20) his bike. He's our good English teacher and good friend.
( )11.
A.a
B.an
C.the
D./
第2题:
第3题:
在以下程序段的空白处填入(),能够正确输出teacher。 #include<stdio.h> main() {char *p[3]={"student","teacher","classroom"}; printf("%s", ); }
A.*(p+1)
B.*p+1
C.*p[1]
D.*p+7
第4题:
第5题:
第6题:
关于以下代码说法正确的是(_____)。 class Student: def language(self): print ("All the students like Python") class Mary(Student): def work(self): print("Mary is programming") class Tom(Student): def language(self): print("Tom likes JAVA") mary = Mary() tom = Tom()
A.mary.language()会打印出All the students like Python
B.tom.language()会打印出All the students like Python
C.tom.work()会打印出Tom is programming
D.tom.language()会打印出Tom likes JAVA