美国学术能力评估考试(SAT)

单选题At the beginning of the day, the prices of stocks X and Y are the same. At the end of the day, the price of stock X has increased by 1/20 of its original price and the price of stock Y has decreased by 1/20 of its original price. The new price of stock

题目
单选题
At the beginning of the day, the prices of stocks X and Y are the same. At the end of the day, the price of stock X has increased by 1/20 of its original price and the price of stock Y has decreased by 1/20 of its original price. The new price of stock X is what fraction of the new price of stock Y?
A

2/20

B

19/21

C

21/19

D

18/20

E

20/18

如果没有搜索结果,请直接 联系老师 获取答案。
如果没有搜索结果,请直接 联系老师 获取答案。
相似问题和答案

第1题:

有以下程序: Class Date { public: Date(int y,int m,mt d); { year=y; month=m; day=d; } Date(int y=2000) { year=y; month=10; day=1; } Date(Date &D) { year=d.year; month=d.month; day=d.day; } Void prin

A.2

B.3

C.4

D.5


正确答案:B
解析: 本题考核拷贝构造函数。上述程序中,拷贝构造函数一共被调用了3次:第一次是在执行语句Date date3(date1);时,用已经建立的对象date1对正在建立的对象date3进行初始化;第二次是在调用fun函数时,由于是传值调用,因此实参对象date3要对形参对象d进行初始化;第三次是在执行fun函数中的返回语句return temp时,系统初始化一个匿名对象时使用了拷贝构造函数。

第2题:

有以下程序: class Date { public: Date(int y,int m,int D) ; { year =y; month=m; day=d; } Date(int y=2000) { year=y; month=10; day=1; } Date(Date &D) { year=d.year; month=d.month; day=d.day; } void print () { cout<<year<<"."<<month<<"."<<day<<end1; } private: int year,month,day; }; Date fun(Date D) { Date temp; temp=d; return temp; } int main() { Date date1(2000,1,1),date2(0,0,0); Date date3(date1); date2=fun(date3); return 0; } 程序执行时,Date类的拷贝构造函数被调用的次数是

A.2

B.3

C.4

D.5


正确答案:B
解析:本题考核拷贝构造函数。上述程序中,拷贝构造函数一共被调用了3次:第一次是在执行语句Datedate3(date1);时,用已经建立的对象date1对正在建立的对象date3进行初始化:第二次是在调用fun函数时,由于是传值调用,因此实参对象date3要对形参对象d进行初始化;第三次是在执行fun函数中的返回语句returntemp;时,系统用返回初始化一个匿名对象时使用了拷贝构造函数。

第3题:

下列哪些代码段是正确的?()

A. X x=new X();

Y y=new Y();

Z z=new Z();

y=(Y)x;

B. X x=new X();

Y y=new Y();

Z z=new Z();

x=(X)y;

C. X x=new X();

Y y=new Y();

Z z=new Z();

Z=(Z)x;

D. X x=new X();

Y y=new Y();

Z z=new Z();

W w=(W)x;


答案:D

解析:对象的强制类型转换的格式要求:"W w=(W)x;",只有D项符合

第4题:

SIEMENS数控铣床上可以这样编写圆弧程序G2X50Y40AR=150。


正确答案:正确

第5题:

有以下程序: Class Date {public: Date(int y,int m,int d); {year=y; month=m; day=d;} Date(int y=2000) {year=y; month=10; day=1;) Date(Date &D) {year=d.year; month=d.month; day=d.day;} void print() {cout<<year<<“.”<<mo

A.2

B.3

C.4

D.5


正确答案:B
解析: 本题拷贝构造函数一共被调用了3次:第一次是在执行语句Date date3(date1);时,用已经建立的对象date1对正在建立的对象date3进行初始化;第二次是在调用fun函数时,由于是传住调用,因此实参对象date3要对形参对象d进行初始化,第三次是在执行fun函数中的返回语句returntemp;时,系统用返回初始化一个匿名对象时使用了拷贝构造函数。

第6题:

Our stocks include a wide range of first-class electrical typewriters at very competitive prices.They have the correcting and automatically storing system. From the catalogues enclosed, you will find that our prices are much lower than those in the market.(英译中)


参考答案:我方存货包括许多种类的一流电动打字机,其价格很有竞争力。这些打字机具有改正和自动存储系统。贵方从所附的目录单中可以看出,我们的价格要比市场价低很多。

第7题:

下面语句正确的是A.If x<3 * y And x>y Then y=x^3B.If x<3 * y And x>y Then y=x3C.If x<3 * y:

下面语句正确的是

A.If x<3 * y And x>y Then y=x^3

B.If x<3 * y And x>y Then y=x3

C.If x<3 * y:x>y Then y=x^3

D.If x<3 * y And x>y Then y=x* *3


正确答案:A
解析:本题是对条件语句结构的考查。条件语句可以分为三种类型。如下:
  If Then结构
  If Then Else结构
  Select Case结构
  而If Then结构有两种格式:
  If 条件 Then 语句
  If 条件 Then
  语句块
  End If

第8题:

(53)下列关于函数依赖和多值依赖的叙述中,( )是不正确的。

Ⅰ、若X→Y,则X→→Y Ⅱ、若X→→Y,则X→Y

Ⅲ、若Y í X,则X→Y Ⅳ、若Y í X,则X→→Y

Ⅴ、若X→Y,Y* ì Y,则X→Y* Ⅵ、若X→→Y,Y*ìY,则X→→Y*

A)仅Ⅱ和Ⅳ

B)仅Ⅰ、Ⅱ和Ⅳ

C)仅Ⅱ和Ⅵ

D)仅Ⅳ、Ⅴ和Ⅵ


正确答案:A

(53)【答案】A)
【解析】由多值依赖的性质可以判断仅II和IV不正确。

第9题:


A.f(-x,y)=f(x,y),f(x,-y)=-f(x,y)
B.f(-x,y)=f(x,y),f(x,-y)=f(x,y)
C.f(-x,y)=-f(x,y),f(x,-y)=-f(x,y)
D.f(-x,y)=-f(x,y),f(x,-y)=f(x,y)

答案:B
解析:
要求f(x,y)关于x和y都是偶函数。

第10题:

已知元素X、Y的核电荷数小于31,且能形成XY2型的化合物。回答下列问题:若Y的阴离子与Ar有相同的电子层结构,则X的原子外围电子层排布构型有哪些?


正确答案:1s2、2s2、3s2、4s2、3d64s2、3d94s2、3d104s2

更多相关问题