参考答案和解析
正确答案: E
解析:
设圆的半径为r,故面积S=πr2,若半径增加40%,那么面积S’=π(1.4r)2=1.96πr2,故半径增加了96%,本题选择E项。
更多“单选题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题:

    ( 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 ) ;

    }

    };


    正确答案:

  • 第2题:

    下列程序中,先声明一个圆类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)

  • 第3题:

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

    • 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

  • 第4题:

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

    • A、50%,50%
    • B、40%,60%
    • C、80%,20%
    • D、20%,80%

    正确答案:C

  • 第5题:

    单选题
    If one pair of opposite sides of a square are increased in length by 20% and the other pair of sides are increased in length by 50%, by what percent is the area of the rectangle that results greater than the area of the original square?
    A

    10%

    B

    50%

    C

    70%

    D

    75%

    E

    80%


    正确答案: E
    解析:
    Suppose the length of a side of the original square is 10; then the area of that square is 10×10 or 100. Since one pair of opposite sides of the square are increased in length by 20%, and 20% of 10 is 2, the length of that pair of opposite sides of the new rectangle is 10+2 or 12. Since the other pair of sides are increased in length by 50%, and 50% of 10 is 5, the length of the other pair of opposite sides of the new rectangle is 10+5 or 15. The area of the new rectangle formed is 12×15 or 180, which is 80% greater than 100, the area of the original square.

  • 第6题:

    单选题
    In how many different ways can five pupils be seated in four chairs?
    A

    20

    B

    40

    C

    60

    D

    80

    E

    120


    正确答案: E
    解析:
    Any one of the five pupils can be seated in the first chair, any of the four remaining pupils in the second chair, any of the three remaining pupils in the third chair, and any of the remaining two pupils in the fourth chair. Thus, five pupils can be seated in four chairs in 5×4×3×2 or 120 different ways.

  • 第7题:

    填空题
    If a circle has an area of 49π, what is the diameter of the circle?____

    正确答案: 14
    解析:
    因为圆的面积为πr2,πr2 =49π,r=7,直径为2r=14。

  • 第8题:

    单选题
    Which of the following is NOT mentioned as a success in the latter half of the 20th Century?
    A

    The increase of life expectancy in developing countries.

    B

    The lowing of infant mortality rates.

    C

    The increase of university enrolment by 80%.

    D

    The increased access to safe drinking water and basic sanitation.


    正确答案: C
    解析:
    该段录音中介绍了从20世纪60年代以来人类所取得的进步: 发展中国家人们寿命从46岁延长到64岁、婴儿死亡率减半、小学入学率增加了百分之八十多、能够获得安全饮用水和基本卫生设施的人数翻了一番。因此只有选项C与录音内容不符。

  • 第9题:

    单选题
    If the ratio of the area of a sector to the area of the circle is 2:3. what is the ratio of the length of the arc in the sector to the circumference of the circle?
    A

    3/2

    B

    2/3

    C

    4/9

    D

    1/4

    E

    9/4


    正确答案: D
    解析:
    The ratio of sector area to circle area is proportional to the ratio of sector arc length to circumference.

  • 第10题:

    多选题
    public abstract class Shape {  private int x;  private int y;  public abstract void draw();  public void setAnchor(int x, int y) {  this.x = x;  this.y = y;  }  }  Which two classes use the Shape class correctly?()
    A

    public class Circle implements Shape { private int radius; }

    B

    public abstract class Circle extends Shape { private int radius; }

    C

    public class Circle extends Shape { private int radius; public void draw(); }

    D

    public abstract class Circle implements Shape { private int radius; public void draw(); }

    E

    public class Circle extends Shape { private int radius;public void draw() {/* code here */} }

    F

    public abstract class Circle implements Shape { private int radius;public void draw() { / code here */ } }


    正确答案: B,F
    解析: 暂无解析

  • 第11题:

    单选题
    How much of the solar radiation can be converted into usable energy?
    A

    5%-10%.

    B

    10%-15%.

    C

    30%-45%.

    D

    40%-55%.


    正确答案: B
    解析:
    录音中指出太阳能的使用的第一个问题是“the cells convert only 10%-15%of the radiation from the sun into energy”,由此可见只有10%到15%的太阳辐射可以被转化为可利用的能源,因此选B。

  • 第12题:

    单选题
    How much are the musical tickets for two children?
    A

    16 pounds.

    B

    35 pounds.

    C

    30 pounds.

    D

    40 pounds.


    正确答案: A
    解析:
    【文章大意】本文是三则广告。介绍了一场音乐剧,一场歌述见面会和一场绘画比赛举行的时间、地点和票价情况。
    细节理解题。第一则广告中提到 “Tickets…15 pounds for children”可知,一个孩子的票价是15英镑,两个孩子是30英镑,故选C。

  • 第13题:

    - 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

  • 第14题:

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

    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>),…
    {

    }

  • 第15题:

    下面哪个表达式正确使用了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

  • 第16题:

    public abstract class Shape {  private int x;  private int y;  public abstract void draw();  public void setAnchor(int x, int y) {  this.x = x;  this.y = y;  }  }  Which two classes use the Shape class correctly?()

    • A、 public class Circle implements Shape { private int radius; }
    • B、 public abstract class Circle extends Shape { private int radius; }
    • C、 public class Circle extends Shape { private int radius; public void draw(); }
    • D、 public abstract class Circle implements Shape { private int radius; public void draw(); }
    • E、 public class Circle extends Shape { private int radius;public void draw() {/* code here */} }
    • F、 public abstract class Circle implements Shape { private int radius;public void draw() { / code here */ } }

    正确答案:B,E

  • 第17题:

    单选题
    In the figure below, a small circle, with radius x, is inside a larger circle, with radius 6. What is the area, in terms of x, of the shaded region?
    A

    6π-2πx

    B

    6π-πx2

    C

    12π-2πx

    D

    36π-2πx

    E

    36π-πx2


    正确答案: E
    解析:
    根据图示可知,阴影部分的面积等于大圆的面积减去小圆的面积,即36π- x2π,因此选E。

  • 第18题:

    单选题
    阴道脱落细胞雌激素高度影响表示为()
    A

    40/20/40

    B

    40/40/20

    C

    80/10/10

    D

    10/10/80

    E

    5/40/55


    正确答案: A
    解析: 暂无解析

  • 第19题:

    单选题
    A circle has an area of A, A second circle has a diameter four times that of the first circle. What is the area of the second circle?
    A

    2A

    B

    4A

    C

    8A

    D

    16A

    E

    32A


    正确答案: D
    解析:
    设圆1的半径为r,所以A=πr2,所以圆2的半径为2r,面积=2*π*(2r)2=16πr2=16A,故本题应选D项。

  • 第20题:

    单选题
    Circles O and P intersect at exactly one point, as shown in the figure above. If the radius of circle O is 2 and the radius of circle P is 6, what is the circumference of any circle that has OP as a diameter?
    A

    B

    C

    12π

    D

    16π

    E

    64π


    正确答案: E
    解析:
    Since the radius of circle O is 2 and the radius of circle P is 6, OP = 2+6 or 8. Hence, the circumference of any circle that has OP as a diameter is 8π.

  • 第21题:

    单选题
    A number a increased by 20% of a results in a number b. When b is decreased by 33(1/3)% of b, the result is c. The number c is what percent of a?
    A

    40%

    B

    60%

    C

    80%

    D

    120%

    E

    150%


    正确答案: C
    解析:
    If a increased by 20% of a results in b, then a + (20% of a) = b, a +0.2a =b, 1.2a = b. When b is decreased by 33(1/3)% of b, the result is c, so b - (1/3)b = (2/3)b = c. Since c = (2/3)b = (2/3)(1.2a) = 0.80a, then c is 80% of a.

  • 第22题:

    单选题
    How much does a return ticket to Newcastle cost?
    A

    £25.

    B

    £40.

    C

    £50.


    正确答案: B
    解析:
    当男士提到要一张来回票时,女士回答说Then that’s 40 pounds,因此B项为正确答案。return ticket来回票。

  • 第23题:

    单选题
    病室内适宜的温度、湿度应为()。
    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%


    正确答案: B
    解析: 暂无解析