Questions 11 to 18 are based on the conversation you have just heard.
A. She’s enjoying the music.
B. The music will keep her awake.
C. The music doesn’t bother her
D. She would prefer a different style of music.
查看答案
Questions 30 to 32 are based on the passage you have just heard.
A. The meaning of facial expressions depends on situations.
B. Facial expressions can cause misunderstanding across culture.
C. People from one culture may lack facial expressions because they experience less emotion.
D. Facial expressions may disguise true feelings.
It turned out that getting fired from that company ______(对我来说是发生在我身上的最棒的事情).
His silence suggested that ______(他赞成我的决定,并决定执行那个计划).
【说明】 以下程序的功能是:从键盘上输入一个字符串,把该字符串中的小写字母转换为大写字母,输出到文件test.txt中,然后从该文件读出字符串并显示出来。 【程序】 #include < stdio. h > main( ) FILE * fp; char str[100]; int i=0; if((fp=fopen("text.txt" (1) )) ==NULL) printf("can’t open this file. \n") ;exit(0) ; printf(" input astring: \n" ); gest(str); while( str[i] ) if(str[i] >=’a’ && str[i] <=’z’) str[i]= (2) ; fputc(str[i], (3) ); i++; fclose(fp); fp=fopen(" test.txt", (4) ); fgets(str, 100, fp); printf("%s\n" ,str); (5) ;