【单选题】【消耗次数:1】
20._____your poor record at school, we think you should study more.
In view of
For view of
From view of
Within view of
参考答案:
复制
纠错
相关题目
【单选题】 David watched her car until it ________ from view.
①  remainded
②  dalayed
③  grew
④  disappeared
【单选题】 4. David watched her car until it ____ from view.
①  remained
②  delayed
③  grew
④  disappeared
【单选题】 What does the functional view of language see language?
①  A system of categories based on the communicative needs of the learner
②  A communicative tool to build up and maintain social relations between people
③  A linguistic system made up of various subsystems
④  A a linguistic system and a means for doing things.
【单选题】 What does the structural view of language see language?
①  A system of categories based on the communicative needs of the learner
②  A communicative tool to build up and maintain social relations between people
③  A linguistic system made up of various subsystems
④  A linguistic system and a means for doing things.
【单选题】 What does the interactional view of language see language?
①  A system of categories based on the communicative needs of the learner
②  A communicative tool to build up and maintain social relations between people
③  A linguistic system made up of various subsystems
④  A linguistic system and a means for doing things.
【单选题】 He would like to view difficulties ____ a kind of challenge.
①  with
②  on
③  of
④  as
【判断题】 利用MultiView和View控件能实现向导功能。
①  正确
②  错误
【判断题】 In William Cullen Bryant’s poem “Thanatopsis”, the title means view of death.
①  正确
②  错误
【判断题】 生成的任意视图均可以用VIEW命令命名保存。
①  正确
②  错误
【单选题】 The taxi driver _______ at me in the rear-view mirror when I got on the car.
①  smile
②  laughed
③  grinned
④  stared
随机题目
【单选题】 若有说明:int a[3][4]={0};则下面正确的叙述是( )。
①  只有元素a[][]可得到初值0
②  此说明语句不正确
③  数组a中个元素都可以得到初值,但其值不一定为0
④  数组a中每个元素均可得到初值0
【单选题】 以下正确的叙述是( )。
①  continue 语句的作用是结束整个循环的执行。
②  只能在循环体内和switch语句体内使用break语句。
③  在循环体内使用break语句或continue语句的作用相同。
④  从多层循环嵌套中退出时,只能使用goto语句。
【单选题】 以下程序段 x=-1; do {x=x*x;} while(!x);
①  是死循环
②  循环执行两次
③  循环执行一次
④  有语法错误
【单选题】 执行语句for(i=1;i++后变量i的值是( )。
①  3
②  4
③  5
④  不定
【单选题】 以下正确的叙述是( )。
①  goto语句中只能用于退出多层循环
②  switch语句中不能出现continue语句
③  只能用continue语句来终止本次循环
④  在循环中break语句不能独立出现
【单选题】 下述程序的运行结果( )。 #includevoid main() { char ch; int i=0; for(ch=achzch++) { printf(%c ,ch); if(i%10==0) printf(\n } printf(\n }
①  a b c d e f g h i j k l m n o p q r s t u v w x y z
②  a b c d e f g h i j k l m n o p q r s t u v w x y z
③  a b c d e f g h i j k l m n o p q r s t u v w x y z
④  a b c d e f g h i j k l m n o p q r s t u v w x y z
【单选题】 若有如下语句 int do { printf (%d\n,x-=2);}while(!(--x)); 则上面程序段( )。
①  输出的是1
②  输出的是1和-2
③  输出的是3和0
④  是死循环
【单选题】 下述程序的运行结果( )。 #includevoid main() { int i; for(i=1;i+1;i++) { if(i4){printf(%d\t,i++);break;} printf(%d\t,i++); } }
①  1 3 5
②  1 2 3
③  1 3 4
④  1 4 5
【单选题】 若i为整形变量,则以下循环执行次数是( )。 for (i=2;i==0) printf(%d,i--)
①  无限次
②  0次
③  1次
④  2次
【单选题】 #includevoid main() { int n=4; while(n--) printf(%d\n,--n); }
①  2 0
②  1 0
③  2 1
④  3 0