银行招聘考试

The museum contains several____works of Renaissance art, including two paintings by Raphael, one by Durer, one by Titian, and an early sketch by Tintoretto.A.useless B.priceless C.valueless D.worthless

题目
The museum contains several____works of Renaissance art, including two paintings by Raphael, one by Durer, one by Titian, and an early sketch by Tintoretto.

A.useless
B.priceless
C.valueless
D.worthless
如果没有搜索结果,请直接 联系老师 获取答案。
如果没有搜索结果,请直接 联系老师 获取答案。
相似问题和答案

第1题:

以下对枚举类型名的定义中正确的是______。

A.enum a={one,two,three};

B.enum a{on=9,two=-1,three};

C.enum a={"one","two","three"};

D.enum a{"one","two","three"};


正确答案:B
解析:声明枚举类型用enum开头。例如:enumweekday(sun,mon,tue,wed,thu,fri,sat);说明;1、在C编译中,对枚单元素按常量处理,同时可以改变他们的值。2、枚举值可以用来做判断比较。3、一个整数不能直接赋给一个牧举变量。

第2题:

有如下程序:

#include<iostream>

using narnespace std;

class ONE{

int e;

public:

ONE():c(O){cout<<1;)

ONE(int n):c(13){cout<<2;}

};

class TWO{

ONE oriel;

ONE one2,

public:

TWO(int m):one2(m){cout<<3;}

};

int main(){

TWO t(4);

return O;

}

运行时的输出结果是

A.3

B.23

C.123

D.213


正确答案:B
解析:在主函数中TWO t(4),首先调用TWO类的构造函数TwO(int m):one2(m){eout<<3;},该构造函数使用成员列表初始化,因此在调用函数体前会先给私有成员赋值,然后调用ONE的构造函数ONE(int n):c(n){cout<<2;},因此会先输出2,其次输出3,故本题答案为B)。

第3题:

( 10 )执行下列程序,显示的结果是 【 10 】 。

one= "WORK"

two = ""

a = LEN ( one )

i = a

DO WHILE i>=1

two = two + SUBSTR ( one ,i , 1 )

i=i - 1

ENDDO

? two


正确答案:

第4题:

以下对枚举类型名的定义中正确的是( )

A.enum a={one,two,three};

B.enum a{one=9,two=-1,three=200};

C.enum a={"one","two","four"};

D.enum a{"nine","two","three"};


正确答案:B

第5题:

类class one 在声明func 成员函数时发生错误,出错原因是【 】。

Class one

{

private:

int a;

public:

void func(two& )

};

class two

{

private:

int b;

friend void one: :func(two & );

};

void one: : func(two& r)

a=r.b;

}


正确答案:class one前没有声明语句class two;
class one前没有声明语句class two; 解析:当一个类作为另一个类的成员函数、成员函数的参数或其他情况的时候,要确保编译器能正确解析。由于在class one之前没有关于class two的任何说明,而在class one的func函数中却用了class two类的参数。因此是错误的。

第6题:

以下对枚举类型名的定义中正确的是______。

A.enum a={one,two,three};

B.enum a{one=9,two=-1,three};

C.enum a={"one","two","three"};

D.enum a{"one","two","three"};


正确答案:B
解析:声明枚举类型用enum开头。例如:enum weekday(sun,mon,tue,wed,thu,fri,sat); 说明:1、在C编译中,对枚举元素按常量处理,同时可以改变他们的值。2、枚举值可以用来做判断比较。3、一个整数不能直接赋给一个枚举变量。

第7题:

以理对枚举类型名的定义中正确的是______。

A.enum a={one, two, three);

B.enum a {one=9, two=1three};

C.enum a={"one", "two", "three"};

D.enum a {"one", "two". "three"};


正确答案:B
解析:声明枚举类型用enum开头。例如:enumweekday(sun,mon,tue,wed,thu,fri,sat);说明:1、在C编译中,对枚举元素按常量处理,同时可以改变他们的值。2、枚举值可以用来做判断比较。3、一个整数不能直接赋给一个枚举变量。

第8题:

The Palace Museum is designated one of China's main protected monuments in 1971. ()


正确答案:错

第9题:

Arecentlyorderedservercamestandardwithone3.0GHzprocessor.Itiscapableofhandlingfourtotalprocessors.Whichofthefollowingprocessorcombinationscanbeusedinthisserver?()

A.One,two,threeorfourprocessors

B.One,two,orthreeprocessors

C.One,three,orfourprocessors

D.One,twoorfourprocessors


参考答案:D

第10题:

True patriotism consists( )putting the interests of one country above everything,including one’s life.
in


答案:
解析:
consist in“在于,存在于”;consist of“由……组成”

更多相关问题