问答题What is the volume of a cube whose surface area is 150?

题目
问答题
What is the volume of a cube whose surface area is 150?
如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

请把下面程序补充完整,正确答案是( )。 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.1415926

B.Const PI=3.14159

C.#define PI3.1415926

D.Float PI=3.14159


正确答案:C

第2题:

The free surface effects of a partially full liquid tank decrease with increased ______.

A.Density of the liquid

B.Placement of the tank above the keel

C.Displacement volume of the ship

D.Size of the surface area in the tank


正确答案:C

第3题:

阅读以下说明和C++程序,将应填入(n)处的字句写在对应栏内。

【说明】

以下程序的功能是计算正方体、球体和圆柱体的表面积和体积并输出。

程序由4个类组成:类cube、sphere和cylinder分别表示正方体、球体和圆柱体;抽象类 container为抽象类,提供了两个纯虚拟函数surface_area()和volum(),作为通用接口。

【C++程序】

include<iostream.h>

define pi 3.1416

class container{

protected:

double radius;

public:

container(double radius) {container::radius=radius;}

virtual double surface_area()=0;

virtual double velum()=0;

};

class cube:(1){ //定义正方体类

public:

cube(double radius):container(radius){};

double surface_area () {return 6 * radius * radius;}

double volum() {return radius * radius * radius;}

};

class sphere:(2){ //定义球体类

public:

sphere(double radius): container(radius){};

double surface_area() { return (3);}

double volum() {return pi * radius * radius * radius * 4/3;}

};

class cylinder:(4){ //定义圆柱体类

double height;

public:

cylinder(double radius,double height):container(radius)

{

container::height=height;

}

double surface_are a () { return 2 * pi * radius * (height+radius); }

double volum () {return (5);}

};

void main()

{

container * p;

cube obj1 (5);

sphere obj2(5);

cylinder obj3(5,5);

p=&obj1;

cout<<“正方体表面积”(<<p->surface_area()<<end1;

cont<<“正方体体积”<<p->volume()<<end1;

p=&obj2;

cout<<“球体表面积”<<p->surface_area()<<end1;

cout<<“球体体积”<<p->volume()<<end1;

p=&obj3;

cout<<“球体表面积”<<p->surface_area()<<end1;

cout<<“球体体积”<<p->volume()<<end1;

}


正确答案:(1)public container (2)public container (3) 4 * pi * radius * radius (4) public container (5)pi * radius * radius * height
(1)public container (2)public container (3) 4 * pi * radius * radius (4) public container (5)pi * radius * radius * height 解析:类cube、sphere和cylinder分别表示正方体、球体和圆柱体,它们都需要求各自的表面积和体积,而抽象类container提供纯虚拟函数 surface_area()和velum(),所以类cube、sphere和cylinder都以类contain为基类,公有继承,所以(1)、(2)和(4)空应填入“public container”。
(3)空处为类sphere中求表面积函数的返回值,所以根据球体表面积公式应填入“4*pi*radius*radius”。
(5)空处为类cylinder中求圆柱体体积函数的返回值,所以根据圆柱体体积公式应填入“pi*radius*radius*height”。

第4题:

The Cluster Administrator wants to use disk heartbeats as a non-IP network. What Volume Group consideration must be accounted for prior to configuring disk heartbeats?()  

  • A、 The Volume Group major number must be the same on all nodes.
  • B、 The Shared Volume Group must be created with the Big VG format.
  • C、 The Volume Group must be created as Enhanced Concurrent Capable.
  • D、 The "t factor" must be doubled to create the reserved area for disk hearbeats.

正确答案:C

第5题:

What is the meaning of Metropolitan area? ()

  • A、Around the city
  • B、City itself
  • C、The area near the city
  • D、Big city and its neighbor area

正确答案:D

第6题:

The free surface corrections depend upon the dimensions of the surface of the free liquids and the ______.

A.volume of liquid in the tank

B.displacement of the vessel

C.location of the tank in the vessel

D.height of the center of gravity of the vessel


正确答案:B

第7题:

A VESSEL, OTHER THAN A RESCUE UNIT, DESIGNATED TO CO-ORDINATE SURFACE SEARCH AND RESCUE OPERATION WITHIN A SPECIFIED AREA is known as

A.salving vessel

B.Co-ordinator surface search

C.MERSAR

D.the vessel being salved


正确答案:B
除了营救单位外,一艘被指定用来特定水域协助海面搜索和营救工作的船舶被定义为海面搜寻协调船

第8题:

Which configuration command places interfaces whose IP addresses are between 192.168.0.0 and 192.168.255.255 into OSPF area 0?()

A.A

B.B

C.C

D.D


参考答案:B

第9题:

What is an advantage of IBM SAN Volume Controller (SVC) virtualization over an HP EnterpriseVirtual Array virtualization?()

  • A、SVC supports more RAID levels than HP EVA
  • B、SVC has a broader worldwide installation base than HP EVA
  • C、SVC provides SAN virtualization within the storage area network
  • D、SVC is an IBM virtualization solution for IBM disks in an HP EVA

正确答案:C

第10题:

Where can a system administrator find information regarding configured physical volumes, volume groups, and logical volumes besides the Volume Group Descriptor Area (VGDA)?()

  • A、/etc/filesystems
  • B、/etc/environment
  • C、Object Data Manager (ODM)
  • D、Logical Volume Control Block (LVCB)

正确答案:C

更多相关问题