Big Java Late Objects
Big Java Late Objects
2nd Edition
ISBN: 9781119330455
Author: Horstmann
Publisher: WILEY
bartleby

Concept explainers

bartleby

Videos

Textbook Question
Book Icon
Chapter 5, Problem 9PE

Write methods

public static double sphereVolume(double r)

public static double sphereSurface(double r)

public static double cylinderVolume(double r, double h)

public static double cylinderSurface(double r, double h)

public static double coneVolume(double r, double h)

public static double coneSurface(double r, double h)

that compute the volume and surface area of a sphere with radius r, a cylinder with a circular base with radius r and height h, and a cone with a circular base with radius r and height h. Then write a program that prompts the user for the values of r and h, calls the six methods, and prints the results.

Blurred answer
Students have asked these similar questions
Write static methods: public static double cubeVolume(double h) : h^3 public static double cubeSurface(double h) : 6h^2 public static double cylinderVolume(double r, double h) : hπr^2 public static double cylinderSurface(double r, double h) : 2rπh+2πr^2 that compute the volume and surface area of a cube with height h, and a cylinder with circular base with radius r and height h. Place them into a class named “Geometry.java”. Then write a program with main class called “Lab7_yourID.java” that prompts the user for the values of r and h, calls the four methods, and prints the results. (Optional) Reconsider your previous solution by implementing classes Cube, and Cylinder separately instead of a single class “Geometry” (part A). Which approach is more object-oriented?
Write the equals method for Circle2 which returns true when the radius and the color are the same as the parameter’s radius and color.   The TestCircle2, Circle2 and GeometricObject2 classes are given as follows.   public class TestCircle2 {       public static void main(String[] args) {           Circle2 c1 = new Circle2(2.3, "red");         Circle2 c2 = new Circle2(5.6, "white");         Circle2 c3 = new Circle2(2.3, "red");           System.out.println("c1 equals c2: " + c1.equals(c2));         System.out.println("c1 equals c3: " + c1.equals(c3));         System.out.println("c2 equals c3: " + c2.equals(c3));       } }   class Circle2 extends GeometricObject2 {       private double radius;       public Circle2() {     }       public Circle2(double radius) {         this.radius = radius;     }       public Circle2(double radius, String color) {         this.radius = radius;         setColor(color);     }       /**      * Return radius      */     public double getRadius() {…
My output is showing duplicating "The Surface Area(SA) of Square:". How can I display only one but get the same results? Below is my code. There is also an attached picture for question reference.   Square.java public class Square {public double height;public double width;public double surfaceArea;//getter setter surfaceAreapublic void computeSurfaceArea(){surfaceArea = height * width;System.out.println("The Surface Area(SA) of Square: " + surfaceArea);}public double getSurfaceArea(){return surfaceArea;}//setter for height and widthpublic void setHeight(double height){this.height = height;}public void setWidth(double width){this.width = width;}}   Cube.java public class Cube extends Square {private double depth;//computation for surface area overridepublic void computeSurfaceArea() {super.computeSurfaceArea();System.out.println("The Surface Area(SA) of Cube: " + ((2 * super.getSurfaceArea()) + (2 * width * depth) + (2 * height * depth)));}//setter for depthpublic void setDepth(double…

Chapter 5 Solutions

Big Java Late Objects

Ch. 5.3 - Prob. 11SCCh. 5.3 - What does this program print? Use a diagram like...Ch. 5.4 - Prob. 13SCCh. 5.4 - What does this method do? public static boolean...Ch. 5.4 - Implement the mystery method of Self Check 14 with...Ch. 5.5 - How do you generate the following printout, using...Ch. 5.5 - Prob. 17SCCh. 5.5 - Prob. 18SCCh. 5.5 - Prob. 19SCCh. 5.5 - The boxString method contains the code for...Ch. 5.6 - Consider the following statements: int...Ch. 5.6 - Consider this method that prints a page number on...Ch. 5.6 - Consider the following method that computes...Ch. 5.6 - The comment explains what the following loop does....Ch. 5.6 - In Self Check 24, you were asked to implement a...Ch. 5.7 - Explain how you can improve the intName method so...Ch. 5.7 - Prob. 27SCCh. 5.7 - What happens when you call intName(0)? How can you...Ch. 5.7 - Trace the method call intName(72), as described in...Ch. 5.7 - Prob. 30SCCh. 5.8 - Which lines are in the scope of the variable i...Ch. 5.8 - Which lines are in the scope of the parameter...Ch. 5.8 - The program declares two local variables with the...Ch. 5.8 - There is a scope error in the mystery method. How...Ch. 5.8 - Prob. 35SCCh. 5.9 - Consider this slight modification of the...Ch. 5.9 - Consider this recursive method: public static int...Ch. 5.9 - Consider this recursive method: public static int...Ch. 5.9 - Prob. 39SCCh. 5.9 - The intName method in Section 5.7 accepted...Ch. 5 - In which sequence are the lines of the Cubes.java...Ch. 5 - Write method headers for methods with the...Ch. 5 - Give examples of the following methods from the...Ch. 5 - Prob. 4RECh. 5 - Consider these methods: public static double...Ch. 5 - Prob. 6RECh. 5 - Design a method that prints a floating-point...Ch. 5 - Write pseudocode for a method that translates a...Ch. 5 - Describe the scope error in the following program...Ch. 5 - For each of the variables in the following...Ch. 5 - Prob. 11RECh. 5 - Perform a walkthrough of the intName method with...Ch. 5 - Consider the following method: public static int...Ch. 5 - Consider the following method that is intended to...Ch. 5 - Suppose an ancient civilization had constructed...Ch. 5 - Give pseudocode for a recursive method for...Ch. 5 - Give pseudocode for a recursive method that sorts...Ch. 5 - Write the following methods and provide a program...Ch. 5 - Write the following methods and provide a program...Ch. 5 - Prob. 4PECh. 5 - Prob. 5PECh. 5 - Prob. 6PECh. 5 - Prob. 7PECh. 5 - Prob. 8PECh. 5 - Write methods public static double...Ch. 5 - Write a recursive method public static String...Ch. 5 - Write a recursive method public static boolean...Ch. 5 - Use recursion to implement a method public static...Ch. 5 - Use recursion to determine the number of digits in...Ch. 5 - Write a method that computes the balance of a bank...Ch. 5 - Write a method that tests whether a file name...Ch. 5 - It is a well-known phenomenon that most people are...Ch. 5 - Prob. 3PPCh. 5 - Use recursion to compute an, where n is a positive...Ch. 5 - Leap years. Write a method public static boolean...Ch. 5 - In Exercise P3.13 you were asked to write a...Ch. 5 - Prob. 10PPCh. 5 - Write a program that reads two strings containing...Ch. 5 - Prob. 12PPCh. 5 - Write a program that reads words and arranges them...Ch. 5 - Prob. 14PPCh. 5 - Write a program that reads two fractions, adds...Ch. 5 - Write a program that prints the decimal expansion...Ch. 5 - Write a program that reads a decimal expansion...Ch. 5 - Write two methods public static void...Ch. 5 - Write a program that reads in the width and height...Ch. 5 - Repeat Exercise P5.19 with hexagonal circle...Ch. 5 - Postal bar codes. For faster sorting of letters,...Ch. 5 - Write a program that reads in a bar code (with :...Ch. 5 - Write a program that converts a Roman number such...Ch. 5 - A non-governmental organization needs a program to...Ch. 5 - Having a secure password is a very important...Ch. 5 - Prob. 30PPCh. 5 - Prob. 31PPCh. 5 - Electric wire, like that in the photo, is a...Ch. 5 - The drag force on a car is given by FD=12v2ACD...
Knowledge Booster
Background pattern image
Computer Science
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education
Java Math Library; Author: Alex Lee;https://www.youtube.com/watch?v=ufegX5o8uc4;License: Standard YouTube License, CC-BY