【判断题】【消耗次数:1】
Hotels can be classified according to the rate, location and type of guests.
正确
错误
参考答案:
复制
纠错
相关题目
【单选题】 He []from his seat to greet the guests.
①  rose
②  raised
【单选题】 After dinner the minister made a short ___ to the guests.
①  delivery
②  pronunciation
③  conversation
④  speech
【单选题】 It sounds ridiculous if hotels _____________ guests extra for Wi-Fi service.
①  pay
②  take
③  spend
④  charge
【单选题】 the excellent service, guests can enjoy delicious food in our restaurant.
①  In place of
②  in addition to
③  In charge of
④  In case of
【单选题】 对location对象的href属性的叙述错误的是( )
①  可以获取当前路径
②  可以改变当前路径
③  可以用来刷新页面
④  是只读属性
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”Many joggers feel that if they can succeed in jogging, they can succeed in other things as well.
①  正确
②  错误
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”If winter comes, can spring be far away?
①  正确
②  错误
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”Computers can store huge amounts of informations.
①  正确
②  错误
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”Today it can be said that wheels run America.
①  正确
②  错误
【单选题】 下列对舒适 CAN 总线的 CAN 收发器描述错误的是( C )
①  CAN-H 线的高电压平为 3.6V
②  CAN-H 线的低电压平为 0V
③  CAN-L 线的高电压为 1.4V
④  CAN-L 线的低电压平为 1.4V
随机题目
【简答题】 字符型数据一般占[填空1]个字节。
【简答题】 下面程序的运行时,输入CLanguage↙,输出是[填空1]。#includestdio.hvoid main( ){ char str[30];scanf(%s,str); printf(%s,str);}
【简答题】 以下程序输入20个数,将其逆序输出。#includestdio.hvoid main() { int a[20],i; for(i=0;ii++) scanf(%d,[填空1]); for(i=19;ii--) printf(%d ,[填空2]); }
【简答题】 字符型数据是以字符的[填空1]代码存储在存储单元中的。
【简答题】 下面程序段的运行结果是[填空1]。char c[5]={a,b,\0,c,\0};printf(%s,c);
【判断题】 二维数组只是逻辑上的概念,在计算机内存中是连续存放的,不是二维的,是线性的。
①  正确
②  错误
【判断题】 C语言中没有字符串类型,也没有字符串变量,字符串是存放在字符型数组中的。
①  正确
②  错误
【单选题】 若有说明:int a[10];,则对a数组元素的正确引用是(  )。
①  a[10]
②  a[3.5]
③  a(5)
④  a[10-10]
【单选题】 以下不能对二维数组a 进行正确初始化的语句是(  )。
①  int a[2][3]={0};
②  int a[][3]={{1,2},{0}};
③  int a[2][3]={{1,2},{3,4},{5,6}}
④  int a[][3]={1,2,3,4,5,6};
【单选题】 以下能对二维数组a 进行正确初始化的语句是(  )。
①  int a[2][]={{1,0,1},{5,2,3}};
②  int a[][3]={{1,2,3},{4,5,6}};
③  int a[2][4]={{1,2,3},{4,5},{6}};
④  int a[][3]={{1,0,1},{},{1,1}};