GRE

单选题If the radius of a circle is increased by 40%, how much will the area increase?A 16%B 20%C 40%D 80%E 96%

题目
单选题
If the radius of a circle is increased by 40%, how much will the area increase?
A

16%

B

20%

C

40%

D

80%

E

96%

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

第1题:

成功的两大关键“WHY”和“HOW”分别占多大比例?()

A50%,50%

B40%,60%

C80%,20%

D20%,80%


参考答案:C

第2题:

( 13 )补充完整下面的类定义:

const double PI=3 .14;

class Circle{ // 圆形物体的抽象基类

protected:

double r; // 半径

public:

Circle ( double radius=0 ) : r ( radius ) {}

【 13 】 ; // 计算圆形物体表面积的纯虚函数声明

};

class Cylinder:public Circle { // 圆柱体类

double h; // 高度

public:

Cylindr ( double radius=0, doubli height=0 ) :

Circle ( radius ) , h ( height ) {}

Virtual double Area () { // 计算圆柱体的表面积

return 2*PI*r* ( r+h ) ;

}

};


正确答案:

第3题:

How much time does the typical project manager spend communicating (formal and informal)?

A 40% - 60%

B 30% - 70%

C 60% - 80%

D 75% - 90%

E 25% - 55 %


正确答案:D

第4题:

病室内适宜的温度、湿度应为()。

  • A、18℃~22℃,50%~60%
  • B、16℃~20℃,30%~40%
  • C、18℃~22℃,60%~70%
  • D、22℃~24℃,30%~40%
  • E、20℃~24℃,60%~80%

正确答案:A

第5题:

下列程序中,先声明一个圆类circle和一个桌子类table,另外声明一个圆桌类roundtable,它是由 circle和table两个类派生的,要求声明一个圆桌类对象,并输出圆桌的高度,面积和颜色。请填空完成程序

include<iostream.h>

include<string.h>

class circle{

double radius;

public:

circle(double r){radius=r;}

double get_area(){return 3.416*radius*radius;}

};

class table{

double height;

public:

table(double h)<height=h;}

double get_height(){return height;}

};

class roundtable:public table,public circle{

char *color;

public:

roundtable(double h,double r,char c[]): 【 】 {

color=new char[strlen(c) +1];

【 】;

};

char*get_color(){return color;}

}:

void main(){

roundtable rt(0.8,1.0,“白色”);

cout<<"圆桌的高:"<<rt. get_height()<<end1;

cout<<"圆桌面积:"<<rt.get_area()<<end1;

cout<<"圆桌颜色:"<<n.get color()<<end1;

}


正确答案:circle(r) table(h) strcpy(color c)
circle(r), table(h) strcpy(color, c)

第6题:

What are you recommended to answer the question tell me about yourself, if you are seeking for your first job?

A.Speak much about how that job appeals to you and caused you to apply for it.

B.Speak much about how your enthusiasm about an area has driven you to want that job.

C.Speak much about how a book you’ve read or a person you’ve known motivated you to get that job.

D.Speak much about how your past experiences made you decide to compete for that job.


参考答案:B

第7题:

- How much of a problem meeting the budget? - _______.

A The product should finance itself ;

B Well, it seems that we underestimated the costs ;

C You only need a budget increase for the first order


参考答案:B

第8题:

107 How much time does the typical project manager spend communicating (formal and informal)? A. 40% - 60%

B. 30% - 70%

C. 60% - 80%

D. 75% - 90%

E. 25% - 55 %


正确答案:D

第9题:

根据程序中的注释将下列缺失部分补充完整。

class Point{

int x,y; //点的x和y坐标

public:

Point(int xx=0,int yy=0):x(xx),y(yy){}

};

class Circle{

Point center;//圆心位置

int radius; //半径

public: //利用cx和cY分别初始化圆心的x和y坐标

circle(int cx,int cy,int r): 【 】 ,radius(r){}

void area()(cout<<3.14159*radius*radius<<end1;)

};


正确答案:center(cxcy)
center(cx,cy) 解析:center在类Circle中声明为成员对象。成员对象的初始化工作是在成员初始化列表中完成的。初始化的一般格式如下:
<类名>(<总形参表>):<成员对象1>(<形参表1>),<成员对象2>(<形参表2>),…
{

}

第10题:

下面哪个表达式正确使用了math()?

  • A、area=newmath().pt*Radius$adius
  • B、area=math.New().pt*radius$radius
  • C、area=math.NewInstance().Pt#radius$radius
  • D、area=mathpt$radius$radius

正确答案:D

更多相关问题