网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
单选题
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%
参考答案
参考解析
解析:
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.
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.
更多 “单选题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%” 相关考题
考题
阅读下列程序说明和C代码,把应填入其中n处的字句写在对应栏内。【说明】下面的程序能够计算不同图形的面积。程序中把每个图形的数据定义成结构类型,利用共同体类型描述2种图形的数据。程序根据输入参数代表的图形类型,求出图形的面积并输出。【程序】struct Circle{float x,y; /*圆心位置*/float r; /*圆半径*/};struct Rectangle{float width; /*矩形宽*/float length; /*矩形长*/};union shape{struct Circle circle;/*圆数据结构*/struct Rectangle rectangle;/*矩形数据结构*/};main(){union shape a;float area;int i;printf(“input number: 1circle,2rectangle,3 end\n”);scanf("%d",i);while (1) /*循环接收输入,并计算输出*/{switch(i){case 1:printf(“input radius:\n”);scanf(“%f”, (2);/*共同体类型变量接收输入*/area=3.1415926* (3);printf(“the area of circle=%f\n”,area);break;case 2:printf(“input width and length :\n”);seanf(“%f,%f”, (4);/*共同体类型变量接收输入*/。area=(5);printf(“the area of rectangle=%f\n”,area);break;}printf(“input number:1 circle,2 rectangle,3 end\n”);scanf(“%d”,i);}}
考题
阅读以下说明和Java程序,将应填入(n)处的字句写在对应栏内[说明]以下程序的功能时三角形、矩形和正方形的面积输出。程序由5个类组成:areatest是主类,类Triangle,Rectangle和Square分别表示三角形、矩形和正方形,抽象类Figure提供了一个计算面积的抽象方法。[Java程序]public class areatest {public static viod main(string args[]){Figure[]Figures={New triangle(2,3,3),new rectangle(5,8),new square(5)};for(int i=0; i<Figures.length;i++){system.out.println(Figures+"area="+Figures.getarea());}}}public abstract class figure {public abstract double getarea();}public class rectangle extends (1) {double height;double width;public rectangle (double height,double width){this.height=height;this.width=width;}public string tostring(){return"rectangle:height="+height+",width="+width+":";}public double getarea(){return (2)}}public class square exends (3){public square(double width){(4);}public string tostring(){return"square:width="+width":";}}public class triangle entends (5){double la;double lb;double lc;public triangle(double la,double lb,double lc){this.la=la;this.lb=lb;this.lc=lc;}public string tostring()(return"triangle:sides="+la+","+lb+","+lc+":";}public double get area(){double s=(la+lb+lc)/2.0;return math.sqrt(s*(s-la)*(s-lb)*(s-lc));}}
考题
阅读以下说明和Java源程序,将应填入(n)处的字句写在对应栏内。【说明】以下程序能够计算三角形、矩形和正方形的周长并输出。程序由5个类组成:AreaTest是主类,类Triangle、Rectangle和Square分别表示三角形、矩形和正方形,抽象类Figure提供了一个计算周长的抽象方法。【程序】public class girthTest{public static void main (String args[]){Figure[]figures={new Triangle (2,3,3),new Rectangle(5,8),new Square(5)};for(int i=0;i<figures.length;i++){System.out.println(figures[i]+"girth="+figures[i].getGirth());}}}public abstract class Figure{public abstract double getGirth();}public class Rectangle extends (1) {double height;double width;public Rectangle(double height,double width){this.height=height;this.width=width;}public String toString(){return "Rectangle:height="+height+",width="+width+":";}public double getGirth(){return (2);}}public class Square extends (3) {public Square(double width){(4);}public Stdng toString(){return "Square:width='+width+":";}}public class Triangle extends (5) {double la;double lb;double lc;public Triangle(double la,double lb,double lc){this.la=la;this.lb=lb;this.lc=lc;}public String toString(){return "Triangle:sides=" +la+"," +lb+"," +lc+":";}public double getGirth(){return la+lab+lc;}}
考题
China’s space station, ________ three capsules and covering an area of no less than 60 square meters, will be completed within 10 years.A、making up ofB、made upC、consisted ofD、consisting of
考题
请把下面程序补充完整,正确答案是( )。 main( ) { float radius,length,area,volume; printf("Input a radius:"); Scanf("%f",radius); length=2.0*PI*radius; /*引用无参宏求周长*/area=PI*radius*redius; /*引用无参宏求而积*/ volume=PI*radius*radius*radius*3/4; /*引用无参宏求体积*/ printf("length=%.2f,area=%.2f,volume=%.2f\n",length,area,volume); }A.PI=3.1415926B.Const PI=3.14159C.#define PI3.1415926D.Float PI=3.14159
考题
As a Network Engineer, you have to master how to deploy Virtual Storage Area Network and what are the results of the deployment. Which two of the following are resulting from its deployment?()A、reduced backupB、increased securityC、greater storage demandD、improved availability
考题
You want to limit the number of Type 7 LSAs to be converted into Type 5 LSAs at an appropriate ARB. Which two commands should you use from the [edit] hierarchy level within the JUNOS software configuration mode?()A、set protocols ospf area-range network/mask-lengthB、set protocols ospf area area-id nssa area-range network/mask-lengthC、set protocols ospf area area-id area-range network/mask-length restrictD、set protocols ospf area area-id nssa area-range network/mask-length restrict
考题
You want to limit the number of Type 7 LSAs to be converted into Type 5 LSAs at an appropriateABR. Which two commands should you use from the [edit] hierarchy level within JUNOS configuration mode?()A、set protocols ospf area-range network/mask-lengthB、set protocols ospf area area-id nssa area-range network/mask-lengthC、set protocols ospf area area-id area-range network/mask-length restrictD、set protocols ospf area area-id nssa area-range network/mask-length restrict
考题
单选题When the voltage remains constant and the resistance is increased in a series circuit, the flow of current ()A
increases by the square of the original valueB
increasesC
remains the sameD
decreases
考题
单选题If A (-1, 1) and B (3, -1) are the endpoints of one side of square ABCD, what is the area of the square?A
12B
16C
20D
25E
36
考题
单选题If the area of a square with sides of length 8 centimeters is equal to the area of a rectangle with a width of 4 centimeters, what is the length of the rectangle, in centimeters?A
4B
8C
12D
16E
18
考题
单选题The resistance of a conductor varies ()A
directly as its length and inversely as its cross-sectional areaB
inversely as its length and directly as its cross-sectional areaC
directly as its length and directly as its cross-sectional areaD
inversely as its length and inversely as its cross-sectional area
考题
问答题Over the course of a year, a certain house appreciated in value by 10 percent while the house next door decreased in value by 10 percent as a result of foundation damage. At the end of the year, the reduced price of the second house was what percentage of the increased price of the first house? (1) The amount by which the first house increased in value was half as much as the amount by which the second house decreased in value. (2) At the end of the year, the second house was worth $70,000 more than the first house.
考题
单选题The length of a rectangle is 5 more than the side of a square, and the width of the rectangle is 5 less than the side of the square. If the area of the square is 45, what is the area of the rectangle?A
20B
25C
45D
50E
70
考题
填空题One side of square A is 1/2 the length of the diagonal of square B. If the area of square A is 16, what is the area of square B?a + b- 4z = 500a +b + 6z= 1200____
考题
单选题If the length of a wire is halved and the cross-sectional area is doubled, the resistance will be ()A
quarteredB
unchangedC
doubledD
quadrupled
考题
单选题When the current in a power transmission line is increased, the power loss ()A
increases as the square of the currentB
decreases as the square root of the currentC
remains the same, as it is independent of current flowD
increases in direct proportion as the current
考题
问答题A rectangle is equal in area to a square with sides of length 12. Is the diagonal of the rectangle greater in length than 20? (1) The rectangle has a length of 16. (2) The rectangle has a width of 9.
考题
单选题If the area of a square is 100 cm2, then its perimeter is ______.A
10cmB
20cmC
40cmD
200cmE
100cm
考题
单选题The most significant finding of the original research was __________.A
lighting had no consistent effect on productionB
production sometimes increased when lighting was reduced to the level of ordinary moonlightC
that lighting was no more important than the other factors of temperature and humidityD
the results were unexpected and confusing
考题
单选题If the sum of a number and the original number increased by 5 is greater than11, which could be a possible value of the number?A
-5B
-1C
1D
3E
4
考题
单选题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/2B
2/3C
4/9D
1/4E
9/4
考题
单选题The length of a rectangular kitchen floor is 3 feet more than its width, if the length of the floor is 12 feet, what is the area of the floor in square feet?A
9B
15C
42D
108E
44
考题
单选题In ship construction,frame spacing is().A
greater at the bow and sternB
reduced at the bow and sternC
uniform over the length of the vesselD
uniform over the length of the vessel,with the exception of the machinery spaces,where it is reduced due to increased stresses
考题
单选题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%
考题
单选题A vessel towing is showing three forward white masthead lights in a vertical line. This means that the length of the().A
towing vessel is less than 50 metersB
towing vessel is greater than 50 metersC
tow is less than 200 metersD
tow is greater than 200 meters
热门标签
最新试卷