【判断题】【消耗次数:1】
答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”Computers never forgot anything theyve been told.
正确
错误
参考答案:
复制
纠错
相关题目
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”I told him not to open the door.
①  正确
②  错误
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”Computers can store huge amounts of informations.
①  正确
②  错误
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”Computers are far more efficient to human beings.
①  正确
②  错误
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”There comes he.
①  正确
②  错误
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”We use computers a lot in medicine nowadays, either.
①  正确
②  错误
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”In modern banking we make extensive use at computers.
①  正确
②  错误
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”Computers can also help the police fight crime.
①  正确
②  错误
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”We are develop systems of storing fingerprint information in computers.
①  正确
②  错误
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”You shouldnt take anything doesnt belong to you.
①  正确
②  错误
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”Here comes the bus.
①  正确
②  错误
随机题目
【单选题】 下面程序的输出结果是() main( ) {int x=40,y=4,z=4; x=y==z; printf(%d,x); x=x==(y-z); printf(%d,x); }
①  40
②  41
③  11
④  10
【多选题】 调用C语言函数时,实参可以是()
①  常量
②  变量
③  表达式
④  Void
【多选题】 如果输入的是5,以下程序运行结果不正确的是() #include #define M n+n void main( ) { int n; int result; printf(请输入一个整数:); scanf(%d, result=M*M; printf(result = %d\n,result); }
①  100
②  35
③  25
④  50
【多选题】 利用循环求1到5的和值,已知i=1,sum=0;利用循环每次让sum求和,然后i++;判断条件是i<6;则求和的循环操作是()。
①  sum=sum+i
②  sum+=i
③  sum=i
④  i=sum+i
【单选题】 有字符数组a[80]和b[80],则正确的输出语句是()
①  puts(a,b)
②  puts(a);puts(b)
③  printf(%s,%s,a[],b[]);
④  putchar(a,b)
【单选题】 下列不正确的定义是()。
①  int*p=i,i;
②  int*p,i;
③  inti,*p=i;
④  inti,*p;
【单选题】 文件结束标志是()
①  \0
②  EOF
③  \n
④  0
【单选题】 #include stdio.h语句的功能是()。
①  这个语句的功能是进行有关的预处理操作
②  这个语句的功能是进行有关的打印处理操作
③  这个语句的功能是进行有关的扫描理操作
④  这个语句的功能是进行有关的数学公式的处理操作
【单选题】 对于int型非负数据不可采用格式说明符()输出。
①  %x
②  %d
③  %ld
④  %u
【单选题】 要使doublex;longa;获得数据,正确的输入语句是()。
①  scanf(%d,%f,a,x);
②  scanf(%f,%1d,x,a);
③  scanf(%ld,%1f,a,x);
④  scanf(%1d,%1f,a,x);