【单选题】【消耗次数:1】
Graceland, Elvis Presley’s former home, is now a tourist __________ that draws more than 600,000 visitors every year.
store
attraction
appointment
arrangement
参考答案:
复制
纠错
相关题目
【单选题】 Niagara Falls is a great tourist _____, drawing millions of visitors every year.
①  attention
②  attraction
③  appointment
④  arrangement
【单选题】 Even if they are on sale, these refrigerators are equal in price to, if not more expensive than, ___ at the other store.
①  anyone
②  the others
③  that
④  the ones
【判断题】 There are far more toys than the three-year-old child can count.
①  正确
②  错误
【判断题】 The boy draws a picture now.
①  正确
②  错误
【单选题】 — Its very windy and dusty in Beijing . —Well, more trees______ every year to stop the wind and sand.
①  should plant
②  should planted
③  can planted
④  must be planted
【单选题】 These children are ______ this year than they were last year.
①  more tall
②  more taller
③  very taller
④  much taller
【单选题】 9. These children are ____this year than they were last year.
①  more tall
②  more taller
③  very taller
④  much taller
【单选题】 These children are _________ this year than they were last year.
①  moretall
②  moretaller
③  verytaller
④  muchtaller
【单选题】 It was not until she had arrived home __________ remembered her appointment with the doctor.
①  when she
②  that she
③  and she
④  she
【单选题】 These children are_______this year than they were last year.
①  moretall
②  moretaller
③  verytaller
④  muchtaller
随机题目
【单选题】 有以下说明语句:struct Point{int x;int y;};则叙述正确的是()
①  正确的结构类型说明
②  正确的结构变量说明
③  错误的原因是结构中成员类型相同
④  无意义的说明
【单选题】 下列表达式的结果是()a=3*5,a=b=3*2
①  15
②  5
③  6
④  3
【单选题】 在C++中,函数原型不能标识()
①  函数的返回类型
②  函数参数的个数
③  函数参数类型
④  函数的功能
【单选题】 C++实现运行时的多态性是通过什么机制实现的()
①  重载函数
②  构造函数
③  析构函数
④  虚函数
【单选题】 在公有继承的情况下,基类的成员(私有的除外)在派生类中的访问权限()
①  受限制
②  保持不变
③  受保护
④  不受保护
【单选题】 有说明语句int b[4][5];void fun(int*,int n);调用函数的正确语句是()
①  fun(b,20);
②  fun(b[0],20);
③  fun(b[0][0],20);
④  fun(b,20);
【单选题】 已知int a[10]={0,1,2,3,4,5,6,7,8,9},*p=a;不能表示数组a中元素的式子是()
①  *a
②  *p
③  a
④  a[p-a]
【单选题】 任何复杂的程序,都是由()构成的。
①  分支结构、顺序结构、过程结构
②  循环结构、分支结构、过程结构
③  顺序结构、循环结构、分支结构
④  循环结构、分支结构
【单选题】 若有类模板声明:template classTclass{int k;public:Tclass(int);//……};以下正确的说明语句正确的是()
①  Tclass(double)t(10);
②  Tclassdoublet(10);
③  Tclass0.5t(10);
④  Tclass t(10);
【单选题】 以下程序的输出的结果是()。 int x=3; main( ) int i; for(i=1;i<x;i++)incre( );incre( ) staic int x=1; x*=x+1; printf( %d, x);
①  25
②  26
③  27
④  28