【单选题】【消耗次数:1】
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
参考答案:
复制
纠错
相关题目
【单选题】 Can anything be done to_________ the negative influence of some television programs?
①  accept
②  assume
③  avoid
④  alarm
【判断题】 Credit cards are be used in most countries, but you may also need to bring some cash.
①  正确
②  错误
【单选题】 Computer software _____ some 70 percent of our range of products.
①  picks up
②  focuses on
③  accounts for
④  is based on
【判断题】 We can pick some apples.
①  正确
②  错误
【单选题】 Can I send a package with some fragile______?
①  items
②  itinerary
③  terms
④  teams
【单选题】 Can I send a package with some fragile______?
①  items
②  itinerary
③  t terms
④  teams
【单选题】 Some creatures are masters of disguise; they can easilytheir environment.
①  weaveinto
②  blend into
③  break into
④  step into
【单选题】 Some words are hard to____ because they have too many different uses.
①  express
②  explain
③  define
④  describe
【多选题】 You can train yourself to remember better. Here are some_________ .
①  ideas
②  suggestions
③  information
④  furniture
【单选题】 What makes Jane Eyre one of the most popular and important novels of the Victorian Age are the followings except_____.
①  it is noted for its sharp criticism of the existing society
②  it is an intense moral fable
③  it is the first introduction to the English novel the first governess heroine
④  Jane Eyre is too timid to love her master Rochester.
随机题目
【单选题】 若w=1,x=2,y=3,z=4,则表达式w<x?w:y<z?y:z的值是()
①  4
②  3
③  2
④  1
【单选题】 设有定义:intk=1,m=2;floatf=7;,则以下选项中错误的表达式是()
①  k=k+=k
②  -k++
③  k%int(f)
④  f=k%m
【单选题】 下面有关字符数组的描述中错误的是()。
①  字符数组可以存放字符串
②  字符串可以整体输入,输出
③  可以在赋值语句中通过赋值运算对字符数组整体赋值
④  不可以用关系运算符对字符数组中的字符串进行比较
【单选题】 冒泡排序(BubbleSort)的基本概念是:依次比较相邻的两个数,将小数放在前面,大数放在后面。即在第一趟:首先比较第1个和第2个数,将小数放前,大数放后。然后比较第2个数和第3个数,将小数放前,大数放后,如此继续,直至比较最后两个数,将小数放前,大数放后。如果以上过程为一趟的话,如果一个数组有6个元素,那么要从小到大排列,利用冒泡排序法需要几趟比较过程()
①  6次
②  5次
③  4次
④  7次
【单选题】 设j和k都是int类型,则for循环语句 for(j=0,k=-1;k=1;j++,k++)printf(****\n);().
①  循环结束的条件不合法
②  是无限循环
③  循环体一次也不执行
④  循环体只执行一次
【单选题】 若有说明语句“int a[5],*p=a;”,则对数组元素的正确引用是()。
①  a[p]
②  p[a]
③  *(p+2)
④  p+2
【单选题】 若输入的值为123456,则() void swap(int password) { if(password == 123456) { printf(登录成功!); } else { printf(密码错误!); } } void main() { scanf(%d,&password); swap(); }
①  无结果
②  程序无法运行,报错
③  密码错误!
④  登录成功!
【单选题】 若有说明:int n=2,*p=&n,*q=p,则以下非法的赋值语句是:()
①  p=q
②  *p=*q
③  n=*q
④  p=n
【单选题】 若有定义:inta=7;floatx=2.5,y=4.7;则表达式x+a%3*(int)(x+y)%2/4的值是()。
①  2.75
②  0.0
③  3.5
④  2.5
【单选题】 以下C语言语句中,正确的是()
①  unsignedinta[2*3];
②  chars[N+1];
③  doublef[];
④  floatb[4]={1,2,3,4,5};