01.08.2021

Find the volume and surface area

. 9

Step-by-step answer

11.03.2022, solved by verified expert
Unlock the full answer
1 students found this answer . helpful

Length l = 3 1/2 ft = 5/2 ft 

Width w = 3 1/3 ft = 10/3ft 

Height h = 3 1/3 ft = 10/3 ft 

Surface area A = 2(lw+wh+hl)

= 2(5/2 ×10/3 + 10/3×10/3 + 10/3×5/2) 

= 2 (50/6 + 100/9 + 50/6)

= 2[(150+100+150)/18]

= 2×400/18 

= 44.444 ft² 

Volume V = lwh 

= 5/2×10/3×10/3

= 27.78 ft³

It is was helpful?

Faq

English
Step-by-step answer
P Answered by Master

The primary audience is scientists such as engineers, mathematicians, or physicists.

Explanation:

The primary audience is scientists, especially experts in rocket science. They are the primary audience because the explanation that the speaker is giving to the audience has specific information that only people with knowledge in this field will understand correctly. Besides, the expert is talking about how they prove the hypothesis to be true and the steps that they followed. Only scientists can verify that the performed tests can corroborate the theory. If the speech is for an ordinary audience, the language would not be technical. It would be simpler so that the audience can understand it.

English
Step-by-step answer
P Answered by Master

The primary audience is scientists such as engineers, mathematicians, or physicists.

Explanation:

The primary audience is scientists, especially experts in rocket science. They are the primary audience because the explanation that the speaker is giving to the audience has specific information that only people with knowledge in this field will understand correctly. Besides, the expert is talking about how they prove the hypothesis to be true and the steps that they followed. Only scientists can verify that the performed tests can corroborate the theory. If the speech is for an ordinary audience, the language would not be technical. It would be simpler so that the audience can understand it.

StudenGPT
Step-by-step answer
P Answered by Studen AI
The main purpose of the text is A. to inform readers about an experiment.

The text presents a hypothesis about the effects of surface smoothness on the altitude reached by rockets and conducts an experiment to test this hypothesis. It provides details about the construction of three identical model rockets with different surface finishes (rough, unfinished, and glossed) and the use of B5-4 motors. The text then describes how each rocket was flown ten times and presents the flight results, which support the initial hypothesis. Finally, the text concludes that smoother surface finishes can reduce drag force and potentially increase rocket efficiency and reduce fuel costs.

The main aim here is to inform the readers about the experiment conducted, its methodology, and the findings obtained, rather than motivating readers to fly model rockets, explaining the effects of drag in general, or promoting high gloss surfaces.
StudenGPT
Step-by-step answer
P Answered by Studen AI
The best indication that the primary audience is academics in the field of engineering is option B. The writer uses specialized language such as "drag," "thrust," and "apogee point." This specialized terminology is commonly used and understood by professionals in the field of engineering. It suggests that the writer is addressing an audience with background knowledge in the subject matter and assumes familiarity with technical terms. This choice of language is more likely to resonate with academics in the field of engineering, rather than high school students or individuals without a background in engineering.
History
Step-by-step answer
P Answered by PhD

Answer:

The primary audience is scientists such as engineers, mathematicians, or physicists.

Explanation:

The primary audience is scientists, especially experts in rocket science. They are the primary audience because the explanation that the speaker is giving to the audience has specific information that only people with knowledge in this field will understand correctly. Besides, the expert is talking about how they prove the hypothesis to be true and the steps that they followed. Only scientists can verify that the performed tests can corroborate the theory. If the speech is for an ordinary audience, the language would not be technical. It would be simpler so that the audience can understand it.

Computers and Technology
Step-by-step answer
P Answered by PhD

Following are the code to this question:

Explanation:

//For Solid:

public class Solid//defining a class Solid

{

private String myName;//defining a String variable

public Solid(String name)//defining parameterized constructor

{

myName = name;//holding String value in myName variable

}

public String getName()//defining getName method  

{

return myName;//return value of myName

}

public double volume()//defining method volume that overriden its subclass

{

return 0;//return value

}

public double surfaceArea()//defining method surfaceArea that overriden its subclass

{

return 0;//return value

}

}

//For RectangularPrism:

public class RectangularPrism extends Solid//defining a class RectangularPrism that inherits Solid

{

  protected double length,width,height;//defining double variable

RectangularPrism(String str,double l,double w,double h)//defining parameterized constructor

{

  super(str);//use super method

  this.length=l;//use this to hold value

  this.width=w;//use this to hold value

  this.height=h;//use this to hold value

}

public double volume()//defining volume method  

{

return length*width*height;//calculate and return volume value

}

public double surfaceArea()//defining a  method surfaceArea  

{

return 2*(length*width+width*height+height*length);//calculate and return the surfaceArea

}

}

// For  Cube:

public class Cube extends RectangularPrism//defining Cube class that inherits RectangularPrism  

{

  Cube(String name, double side) //defining parameterized constructor

   {

       super(name, side, side, side);//use super method

   }

  public double volume()//defining volume method  

  {

   return length * length * length;//calculate and return volume

  }

public double surfaceArea()//defining method surfaceArea  

  {

  return 6 * length*length;//calculate and return surfaceArea

   }

}

//for Cylinder:

import java.lang.*;//import lang package  

public class Cylinder extends Solid//defining Cylinder class that inherits Solid

{

  private double radius, height;//defining double variable

  public Cylinder(String str, double r, double h)//defining parameterized constructor

  {

      super(str);//use super Method

      this.radius = r;//use this keyword to hold value

      this.height = h;//use this keyword to hold value

  }

  public double volume()//defining volume method

  {

      return Math.PI * radius * radius * height;//calculate and return volume

  }

  public double surfaceArea()//defining surfaceArea method

  {

     return 2 * Math.PI * radius * (height + radius);//calculate and return surfaceArea

  }

}

//For Pyramid

import java.lang.*;//import package

public class Pyramid extends Solid//defining a Pyramid class that inherits Solid

{  

  private double length, width,height;//defining double variable

  public Pyramid(String str, double l, double w, double h)//defining parameterized constructor  

  {

      super(str);//use super method

      this.length = l;//use this keyword to hold value

      this.width = w;//use this keyword to hold value

      this.height = h;//use this keyword to hold value

  }

public double volume()//defining volume method

{

return (length*width*height)/3.0;//calculate and return volume

}

public double surfaceArea()//defining a method surfaceArea

{

return (length*width)+length*Math.sqrt((Math.pow((width/2),2)+(height*height)))+(width*Math.sqrt((Math.pow((length/2),2)+(height*height))));//calculate and return surfaceArea

}

}

//For Sphere

import java.lang.*;//import package

public class Sphere extends Solid //defining Sphere class that inherits Solid

{

  private double radius;//defining double variable

  public Sphere(String str, double r)//defining parameterized constructor  

  {

      super(str);//use super method

      this.radius = r;//use this to hold value

  }

  public double volume()//defining volume method

  {

      return (4.0/3.0)*Math.PI*radius*radius*radius;//calculate and return volume

  }

  public double surfaceArea()//defining method surfaceArea  

  {

    return 4 * Math.PI * radius * radius;//calculate and return surfaceArea

  }

}

please find attachment.


Given the Solid class, extend it with:

Pyramid 
Cylinder 
RectangularPrism 
Sphere 
Make sure to cr
Given the Solid class, extend it with:

Pyramid 
Cylinder 
RectangularPrism 
Sphere 
Make sure to cr
Given the Solid class, extend it with:

Pyramid 
Cylinder 
RectangularPrism 
Sphere 
Make sure to cr
Given the Solid class, extend it with:

Pyramid 
Cylinder 
RectangularPrism 
Sphere 
Make sure to cr
Computers and Technology
Step-by-step answer
P Answered by PhD

Following are the code to this question:

Explanation:

//For Solid:

public class Solid//defining a class Solid

{

private String myName;//defining a String variable

public Solid(String name)//defining parameterized constructor

{

myName = name;//holding String value in myName variable

}

public String getName()//defining getName method  

{

return myName;//return value of myName

}

public double volume()//defining method volume that overriden its subclass

{

return 0;//return value

}

public double surfaceArea()//defining method surfaceArea that overriden its subclass

{

return 0;//return value

}

}

//For RectangularPrism:

public class RectangularPrism extends Solid//defining a class RectangularPrism that inherits Solid

{

  protected double length,width,height;//defining double variable

RectangularPrism(String str,double l,double w,double h)//defining parameterized constructor

{

  super(str);//use super method

  this.length=l;//use this to hold value

  this.width=w;//use this to hold value

  this.height=h;//use this to hold value

}

public double volume()//defining volume method  

{

return length*width*height;//calculate and return volume value

}

public double surfaceArea()//defining a  method surfaceArea  

{

return 2*(length*width+width*height+height*length);//calculate and return the surfaceArea

}

}

// For  Cube:

public class Cube extends RectangularPrism//defining Cube class that inherits RectangularPrism  

{

  Cube(String name, double side) //defining parameterized constructor

   {

       super(name, side, side, side);//use super method

   }

  public double volume()//defining volume method  

  {

   return length * length * length;//calculate and return volume

  }

public double surfaceArea()//defining method surfaceArea  

  {

  return 6 * length*length;//calculate and return surfaceArea

   }

}

//for Cylinder:

import java.lang.*;//import lang package  

public class Cylinder extends Solid//defining Cylinder class that inherits Solid

{

  private double radius, height;//defining double variable

  public Cylinder(String str, double r, double h)//defining parameterized constructor

  {

      super(str);//use super Method

      this.radius = r;//use this keyword to hold value

      this.height = h;//use this keyword to hold value

  }

  public double volume()//defining volume method

  {

      return Math.PI * radius * radius * height;//calculate and return volume

  }

  public double surfaceArea()//defining surfaceArea method

  {

     return 2 * Math.PI * radius * (height + radius);//calculate and return surfaceArea

  }

}

//For Pyramid

import java.lang.*;//import package

public class Pyramid extends Solid//defining a Pyramid class that inherits Solid

{  

  private double length, width,height;//defining double variable

  public Pyramid(String str, double l, double w, double h)//defining parameterized constructor  

  {

      super(str);//use super method

      this.length = l;//use this keyword to hold value

      this.width = w;//use this keyword to hold value

      this.height = h;//use this keyword to hold value

  }

public double volume()//defining volume method

{

return (length*width*height)/3.0;//calculate and return volume

}

public double surfaceArea()//defining a method surfaceArea

{

return (length*width)+length*Math.sqrt((Math.pow((width/2),2)+(height*height)))+(width*Math.sqrt((Math.pow((length/2),2)+(height*height))));//calculate and return surfaceArea

}

}

//For Sphere

import java.lang.*;//import package

public class Sphere extends Solid //defining Sphere class that inherits Solid

{

  private double radius;//defining double variable

  public Sphere(String str, double r)//defining parameterized constructor  

  {

      super(str);//use super method

      this.radius = r;//use this to hold value

  }

  public double volume()//defining volume method

  {

      return (4.0/3.0)*Math.PI*radius*radius*radius;//calculate and return volume

  }

  public double surfaceArea()//defining method surfaceArea  

  {

    return 4 * Math.PI * radius * radius;//calculate and return surfaceArea

  }

}

please find attachment.


Given the Solid class, extend it with:

Pyramid 
Cylinder 
RectangularPrism 
Sphere 
Make sure to cr
Given the Solid class, extend it with:

Pyramid 
Cylinder 
RectangularPrism 
Sphere 
Make sure to cr
Given the Solid class, extend it with:

Pyramid 
Cylinder 
RectangularPrism 
Sphere 
Make sure to cr
Given the Solid class, extend it with:

Pyramid 
Cylinder 
RectangularPrism 
Sphere 
Make sure to cr

Try asking the Studen AI a question.

It will provide an instant answer!

FREE