【单选题】【消耗次数:1】
The twentieth century is the age of _____________.
technic
technician
technology
technological
参考答案:
复制
纠错
相关题目
【单选题】 设有关系表S(NO,NAME,AGE),其中AGE为年龄字段,则表达式AGE NOT BETWEEN 18 AND 24 等价于( )
①  A.AGE=18 or= age==24
②  B.AGE=18 or= age=24
③  C.AGE18 or= age==24
④  D.AGE18 or= age=24
【单选题】 设有关系表S(NO,NAME,AGE),其中AGE为年龄字段,则表达式AGE NOT BETWEEN 18 AND 24 等价于( )
①  AGE=24
②  AGE24
③  AGE=24
④  AGE24
【单选题】 The computer has brought about surprising technological changes ____ we organize and produce information.
①  in a way
②  in the way
③  in that way
④  in no way
【单选题】 The new technology has been ( ) in the industrial production.
①  utilized
②  possessed
③  elevated
④  focused
【单选题】 People walk around ( ) nineteenth-century clothes.
①  wearing
②  wore
③  wear
④  worn
【单选题】 _________ the early nineteenth century, people did not use stamps.
①  In
②  On
③  As
④  For
【单选题】 The end of ______ marked the beginning of The Gilded Age, an age of excess and extremes, of decline and progress, of poverty and dazzling wealth, of gloom and hope.
①  the American War of Independence
②  World War I
③  World War II
④  The Civil War
【单选题】 Well, that’s to say, every coin has two sides, ________ technology.
①  so is
②  so does
③  so has
④  so did
【单选题】 A talk on developments in science and technology_______in the school hall next week.
①  given
②  will be given
③  has been given
④  give
【单选题】 有关系SC(S_ID,C_ID,AGE,SCORE),查找年龄大于22岁的学生的学号和分数,正确的关系代数表达式是( )。ⅰ.πS_ID,SCORE (σ age>22 (SC) ) ⅱ.σ age>22 (πS_ID,SCORE (SC) )ⅲ. πS_ID,SCORE (σ age>22 (πS_ID,SCORE,AGE (SC) ) )
①  ⅰ和 ⅱ
②  只有ⅱ正确
③  只有 ⅰ正确
④  ⅰ和ⅲ正确
随机题目
【单选题】 假定一个函数的二维数组参数说明为char w[][N],则与之等价的指针参数说明为( )。
①  char(*w)[N]
②  char *w [N]
③  char(*w) N
④  char** a
【单选题】 C语言中系统函数fopen()是( )一个数据文件的函数。
①  读取
②  写入
③  关闭
④  打开
【单选题】 向一个二进制文件写入信息的函数fwrite()带有( )参数。
①  1
②  2
③  3
④  4
【单选题】 下面的标识符中,( )具有全局级作用域。
①  函数形参
②  全局变量
③  内部静态类标识符
④  自动变量符
【单选题】 假定k是一个double类型的变量,则定义变量p的正确语句为( )。
①  double p=
②  double *p=
③  double
④  char *p=”Thank you!”;
【单选题】 C程序文件的扩展名为( )。
①  obj
②  exe
③  cpp
④  c
【单选题】 假定有“struct BOOK{char title[40];float price;} book;”,则正确的语句为( )。
①  struct BOOK x=
②  struct BOOK *x=
③  struct BOOK x=calloc(BOOK);
④  struct BOOK *x=BOOK;
【单选题】 假定a为一个字符数组名,则a[8]的地址比该数组的首地址大( )个字节。
①  4
②  8
③  16
④  32
【单选题】 程序运行中需要从键盘输入多于一个数据时,各数据之间应使用( )符号作为分隔符。
①  空格或逗号
②  逗号或回车
③  回车或分号
④  空格或回车
【单选题】 用calloc函数创建具有10个整型元素的一维数组的正确语句是( )。
①  int *p=calloc(10,2);
②  int *p=callo(10;
③  int *p=calloc(10,4);
④  int *p=malloc(10);