-- Hello, Xiaoyan. How Was the party?
--- ____
A. I’m fine, thank you
B. It was Friday
C. Hi, Jack. We had a great time
第1题:
A.Hi, I'm...
B.I want to introduce ...to you
C.Hello, my name is...
D.Let me introduce...to you.
E.I am from ...
F.I'd like you to meet...
G.This is...
H.I come from...
第2题:
以下程序的输出结果是 ______。 #include<iostream.h> void main(){ char s1[]=”Hello”,s2[]="World"; char *p1,*p2; int i; p1=s1; p2=s2; for(i=0;i<5;i++) if(*(pl+i)==*(p2+i)) cout<<*(p1+i); }
A.H1
B.Ho
C.10
D.1
第3题:
Friend A: How's everything with you?
Friend B. Fine, thanks. ______?
第4题:
大多数药物出现作用由快到慢的顺序为
A.p.o.>i.h.>i.m.>i.v.
B.i.h.>i.m.>i.v.>p.o.
C.i.m.>i.v.>p.o.>i.h.
D.i.v.>p.o.>i.h.>i.m.
E.i.v.>i.m.>i.h.>p.o.
第5题:
2.—How _______you?
—I_______ fine, thanks.
A.are;is
B.are; am
C.are;are
D.is,am
第6题:
下面的程序执行后,文件test.t中的内容是 ()。 #include <stdio.h> void fun(char *fname,char *st) {FILE *myf;int i; myf=fopen(fname,"w"); for(i=0;i<strlen(st);i++) fputc(st[i],myf); fclose(myf); } int main(void) { fun("test.t","new world"); fun("test.t","hello,"); return 0; }
A.hello,
B.new worldhello,
C.new world
D.hello,rld