【单选题】【消耗次数:1】
Conductive plastics (导电塑料) can____________ most metals.
repeat
review
reply
replace
参考答案:
复制
纠错
相关题目
【单选题】 On this calendar you can find elective classes as well as review sessions and other events that were not part of ( ) class or exam time.
①  mandate
②  mandator
③  mandated
④  mandatory
【单选题】 _______ I enjoy most is _______ I can come and listen to the concert.
①  That,that
②  What,that
③  What,what
【单选题】 _______I like most is_______I can have a party after work.
①  That,that
②  What, that
③  What, what
【单选题】 Suits are usually made ( ) woolen cloth. People can wear a suit most of the year.
①  from
②  of
③  in
④  at
【单选题】 Which type does the following production practice belong to? The students repeat what the teacher says. This activity can practice individual sounds, individual words, groups of words, and sentences.
①  Listen and repeat
②  Fill in the blanks
③  Make up sentences
④  Using meaningful context
【判断题】 Plastics has taken the place of many other materials.
①  正确
②  错误
【单选题】 But the Internet can bring some ________ effects, too. The most common one, some teenagers are addicted to computer games on the Internet.
①  negative
②  positive
③  important
④  excite
【单选题】 下列()属于热塑性塑料。①聚乙烯塑料 ②酚醛塑料 ③聚苯乙烯塑料 ④有机硅塑料
①  ①②
②  ①③
③  ③④
④  ②③
【单选题】 下列( )属于热塑性塑料。①聚乙烯塑料 ②酚醛塑料 ③聚苯乙烯塑料 ④有机硅塑料
①  ①② 
②  ①③
③  ③④
④  ②③
【单选题】 下列( )属于热塑性塑料。①聚乙烯塑料 ②酚醛塑料 ③聚苯乙烯塑料 ④有机硅塑料
①  ①② 
②  ①③
③  ③④
④  ②③
随机题目
【单选题】 数组元素作参数进行函数调用时,实参和形参都是简单变量,它们之间数据传递的过程描述正确的是?
①  实参将地址传递给形参,并释放原先占用的存储单元;
②  实参将地址传递给形参,调用结束时形参再将此地址回传给实参;
③  实参将值传递给形参,调用结束时形参再将其值回传给实参;
④  实参将值传递给形参,调用结束时形参并不将其值回传给实参;
【单选题】 判断x是否最大值的程序,则填空处应填写_______.#include stdio.h void main( ) { int x,y,z; scanf(%d%d%d,x,y, if (_______) printf(最大值是:%d, x); }
①  (x=y)(x=z)
②  (x=y) || (x=z)
③  (x=z)
④  (x=y) (y=z)
【单选题】 C-Free中单步执行的快捷键是
①  F7
②  F8
③  F9
④  Home
【单选题】 C语言中多行注释的写法正确的是
①  ///
②  //
③  -*
④  -/* */
【单选题】 以下程序的运行结果是( )。 void fun(int array[3][3]) { int j; for(j=0;jj++) array[1][j]=array[1][j]++; printf(\n} void main(){ int j,a[3][3]={0,1,2,1,0,4,2,4,5};fun(a);for(j=0;jj++)printf(%d,a[1][j]); printf(\n }
①  1 0 4
②  2 1 5
③  0 1 2
④  1 2 3
【单选题】 下列说法不正确的是()
①  for循环用于循环次数已知的情况更加方便。
②  for的特例:for(变量=终值;变量初值;变量--)
③  do…while循环的循环体至少执行一次
④  循环体里不能有if 语句
【单选题】 当全局变量与函数内部的局部变量同名时,则在函数内部( )。
①  全局变量与局部变量都无效
②  全局变量有效
③  局部变量有效
④  全局变量与局部变量都有效
【单选题】 C语言中常用的格式输出的函数名称是
①  printf()
②  cin()
③  writeln()
④  output()
【单选题】 一个C语言程序的基本组成单位是( )。
①  主程序
②  子程序
③  过程
④  函数
【单选题】 下列程序执行后的输出结果是_______.#include stdio.h void main( ) { int a=5,b=60,c; if (ab) {c=a*b; printf(%d*%d=%d\n,b,a,c);} else {c=b/a; printf(%d/%d=%d\n,b,a,c);} }
①  60/5=12
②  300
③  60*5=300
④  12