【简答题】【消耗次数:1】
Direction: Fill in the blanks with the words given below. Change the form if necessary.[hug; flatten; ancestor; amazing; solemnly; comfort; awful; desperately; uproot; cousin]2. Dont hate the new roommate. Hes my[填空1].
参考答案:
复制
纠错
相关题目
【简答题】 Direction: Fill in the blanks with the words given below. Change the form if necessary.[hug; flatten; ancestor; amazing; solemnly; comfort; awful; desperately; uproot; cousin]1. The conference was[填空1]opened yesterday.
【简答题】 Direction: Fill in the blanks with the words given below. Change the form if necessary.[hug; flatten; ancestor; amazing; solemnly; comfort; awful; desperately; uproot; cousin]5.[填空1]him, for he is sad.
【简答题】 Direction: Fill in the blanks with the words given below. Change the form if necessary.[hug; flatten; ancestor; amazing; solemnly; comfort; awful; desperately; uproot; cousin]4.They resisted[填空1]and won the battle in the end.
【填空题】 Direction: Fill in the blanks with the words given below. Change the form if necessary.[hug; flatten; ancestor; amazing; solemnly; comfort; awful; desperately; uproot; cousin]9. The government were to[填空1]all its troops from the region.
【简答题】 Direction: Fill in the blanks with the words given below. Change the form if necessary.[hug; flatten; ancestor; amazing; solemnly; comfort; awful; desperately; uproot; cousin]7. Extending your tongue helps[填空1]the back of your tongue.
【简答题】 Direction: Fill in the blanks with the words given below. Change the form if necessary.[hug; flatten; ancestor; amazing; solemnly; comfort; awful; desperately; uproot; cousin]8. I asked if he employed someone to do this[填空1]job for him.
【简答题】 Direction: Fill in the blanks with the words given below. Change the form if necessary.[hug; flatten; ancestor; amazing; solemnly; comfort; awful; desperately; uproot; cousin]3. Whether its a dead[填空1]or God, whatever supernatural agent it is, if you think theyre watching you, your behavior is going to be affected.
【简答题】 Direction: Fill in the blanks with the words given below. Change the form if necessary.[dodge; mean; tease; disability; regular; bonus; proclaim; universal]2. Shy film stars[填空1]cameras.
【简答题】 Direction: Fill in the blanks with the words given below. Change the form if necessary.[assumption; contact; cliff; equivalent; emergency; outweigh; height; rummage; vibration; bugbear]2. This project was predicatied on the[填空1]that the economy was expanding.
【简答题】 Direction: Fill in the blanks with the words given below. Change the form if necessary.[dodge; mean; tease; disability; regular; bonus; proclaim; universal]3. That is a[填空1]trick!
随机题目
【单选题】 下面程序段a=10;b=0;do{b+=2;a-=2+b;}while(a>=0);中循环的执行次数是()
①  10
②  3
③  5
④  4
【单选题】 下列()对结构类型变量定义是错误的。
①  struct teacher {int num; int age; } teach1;
②  struct {int num; int age; } teach1, teach2;
③  struct {int num; int age; } teacher; struct teacher teach1;
④  struct teacher {int num; int age; } ; struct teacher teach1;
【单选题】 若有说明int a[3][4];则对a数组元素的正确引用是()
①  a[2][4]
②  a(2)(1)
③  a[1+1][0]
④  a[1,3]
【单选题】 若a是单精度实型变量,c是基本整型变量,以下正确的输入语句是()
①  scanf(%f%d,a,c);
②  scanf(%f%d,&a,&c);
③  scanf(%f%f,&a,&c);
④  scanf(%d%f,&a,&c);
【单选题】 美国信息交换标准代码简称()。
①  ASCII码
②  BCD码
③  GB-32码
④  8421码
【单选题】 student是一个结构体类型,则结构体变量定义正确的是()
①  struct student a
②  a student
③  struct a
④  以上都不对
【单选题】 设变量定义为charformat[]=“s=%d\n”;则数组format中有()个元素。
①  4
②  5
③  6
④  7
【单选题】 下列数组定义、初始化或赋值语句中,正确的是()
①  intx[5]={1,2,3,4,5,6};
②  intn=8;intscore[n];
③  inta[8];a[8]=100;
④  intx[]={1,2,3,4,5,6};
【单选题】 若变量已正确定义,和语句“if(a>b)k=0;else k=1;”等价的是()
①  k=(a;b)?1:0;
②  k=a;b;
③  k=a;=b;
④  a;=b?0:1;
【单选题】 已知字母a的ASCII十进制代码为97,则执行下列语句后的输出结果为(). char a=a; a--; printf(%d,%c\n,a+2-0,a+3-0);
①  b,c
②  a--运算不合法,故有语法错
③  98,c
④  格式描述和输出项不匹配,输出无定值