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

Concept explainers

Expert Solution & Answer
Book Icon
Chapter 2, Problem 20RE

Explanation of Solution

To find volume of cocktail shaker:

  • A cocktail shaker consists of three cone sections.
  • One cone section consists of radius “r1”, radius “r2”, and height “h”.
  • The formula to find volume “V” for one cone section is as follows

    V=π(r12+rr12+r22)h3

  • For cone section 1, consider the values “0.3” inches for “r11”, “0.5” inches for “r21”, and “0.75” inches for “h1”, where “r11” indicates the first radius for first cone section, “r21” indicates the second radius for first cone section, and “h1” is the height of first cone section.
  • For cone section 2, consider the values “0.5” inches for “r12”, “0.75” inches for “r22”, and “0.3” inches for “h2”, where “r12” indicates the first radius for second cone section, “r22” indicates the second radius for second cone section, and “h2” is the height of second cone section.
  • For cone section 3, consider the values “0.75” inches for “r13”, “0.5” inches for “r23”, “3.0” inches for “h3”, where “r13” indicates the first radius for third cone section, and “r23” indicates the second radius for third cone section, and “h3” is the height of third cone section.
  • To get the volume of the cocktail shaker, the volume of three cone sections need to be added.
  • Therefore, the formula to find the volume “Vc”of cocktail shaker is as follows

    Vc=V1+V2+V3        (1)

    Where, “V1” is the volume of first cone section, “V2” is the volume of second cone section, “V3” is the volume of third cone section.

  • The formula to find the volume for first cone section is as follows

    V1=π(r112+rr1121+r212)h13        (2)

  • Substitutes the values “0.3” inches for “r11”, “0.5” inches for “r21”, and “0.75” inches for “h1” in Equation (2),

V1=3.14(0.32+0.3×0

Explanation of Solution

Algorithm for computing volume of cocktail shaker:

Step-1: Assign the values for first radius, second radius, and height for each cone sections.

Step-2: Compute the volume for first cone section using the formula is as follows

V1=π(r112+rr1121+r212)h13

Where, “r11” indicates the first radius, “r21” indicates the second radius, and “h1” is the height of first cone section.

Step-3: Compute the volume for second cone section using the formula is as follows

V2=π(r122+rr1222+r222)h23

Where, “r12” indicates the first radius, “r22” indicates the second radius, and “h2” is the height of second cone section

Blurred answer
Students have asked these similar questions
Suppose that you want to calculate 1434661 · 3785648743 − 100020304 · 54300201. You are told thatthe answer is a positive integer less than 90. Compute the answer mod 10 and mod 9, then combineto get the answer. Show all the necessary work to obtain your answers. Note: This technique hasoften been employed to do calculations with large integers because most of the computations use smallintegers, with only the Chinese Remainder Theorem step requiring large integers. For example, if theanswer is known to be less than 1036, the calculations can be done mod p for each prime less than100. Since the product of the primes less than 100 is approximately 2.3 × 1036, the Chinese RemainderTheorem gives the answer exactly
Given a real number x and a positive integer k, determinethe number of multiplications used to find x^(2^k)startingwith x and successively squaring (to find x^2, x^4, and soon). Is this a more efficient way to find x^(2^k)than by multiplying x by itself the appropriate number of times?
The density of an object is 2 g/cm3. To convert this to kg/m3, we need to divide it by 1000 to change grams to kilograms. Then, we need to multiply it by 10 to the power of what number to change cm3 to m3.

Chapter 2 Solutions

Big Java Late Objects

Ch. 2.2 - In Java, how do you compute the side length of a...Ch. 2.2 - The volume of a sphere is given by V=43r3 If the...Ch. 2.2 - Prob. 13SCCh. 2.2 - Prob. 14SCCh. 2.3 - Write statements to prompt for and read the users...Ch. 2.3 - What is wrong with the following statement...Ch. 2.3 - Prob. 17SCCh. 2.3 - What is problematic about the following statement...Ch. 2.3 - What is the output of the following statement...Ch. 2.3 - Using the printf method, print the values of the...Ch. 2.4 - Prob. 21SCCh. 2.4 - Suppose the architect specifies a pattern with...Ch. 2.4 - A robot needs to tile a floor with alternating...Ch. 2.4 - For a particular car, repair and maintenance costs...Ch. 2.4 - The shape of a bottle is approximated by two...Ch. 2.5 - What is the length of the string "Java Program"?Ch. 2.5 - Consider this string variable. String str = "Java...Ch. 2.5 - Use string concatenation to turn the string...Ch. 2.5 - Prob. 29SCCh. 2.5 - Prob. 30SCCh. 2 - Write declarations for storing the following...Ch. 2 - What is the value of mystery after this sequence...Ch. 2 - What is wrong with the following sequence of...Ch. 2 - Write the following mathematical expressions in...Ch. 2 - Write the following Java expressions in...Ch. 2 - What are the values of the following expressions?...Ch. 2 - What are the values of the following expressions,...Ch. 2 - What are the values of the following expressions?...Ch. 2 - Assuming that a and b are variables of type int,...Ch. 2 - Suppose direction is an integer angle between 0...Ch. 2 - Find at least five compile-time errors in the...Ch. 2 - Find three run-time errors in the following...Ch. 2 - Consider the following code segment. double...Ch. 2 - Explain the differences between 2, 2.0, 2, 2, and...Ch. 2 - Explain what each of the following program...Ch. 2 - Write pseudocode for a program that reads a word...Ch. 2 - Write pseudocode for a program that reads a name...Ch. 2 - Write pseudocode for a program that computes the...Ch. 2 - Modify the pseudocode for the program in How To...Ch. 2 - Prob. 20RECh. 2 - You are cutting off a piece of pie like this,...Ch. 2 - The following pseudocode describes how to obtain...Ch. 2 - Suppose you are given a string str and two...Ch. 2 - Prob. 24RECh. 2 - For each of the following computations in Java,...Ch. 2 - Prob. 26RECh. 2 - This chapter contains a number of recommendations...Ch. 2 - Write a program that displays the dimensions of a...Ch. 2 - Write a program that computes and displays the...Ch. 2 - Write a program that reads a number and displays...Ch. 2 - Write a program that prompts the user for two...Ch. 2 - Enhance the output of Exercise E2.4 so that the...Ch. 2 - Write a program that prompts the user for a...Ch. 2 - Write a program that prompts the user for a radius...Ch. 2 - Write a program that asks the user for the lengths...Ch. 2 - Improve the program discussed in How To 2.1 to...Ch. 2 - Write a program that helps a person decide whether...Ch. 2 - Write a program that asks the user to input The...Ch. 2 - File names and extensions. Write a program that...Ch. 2 - Write a program that reads a number between 1,000...Ch. 2 - Write a program that reads a number between 1,000...Ch. 2 - Printing a grid. Write a program that prints the...Ch. 2 - Write a program that reads in an integer and...Ch. 2 - Write a program that reads two times in military...Ch. 2 - Writing large letters. A large letter H can be...Ch. 2 - Write a program that transforms numbers 1, 2, 3, ,...Ch. 2 - Write a program that prints a Christmas tree:...Ch. 2 - Easter Sunday is the first Sunday after the first...Ch. 2 - In this project, you will perform calculations...Ch. 2 - The following pseudocode describes how a bookstore...Ch. 2 - The following pseudocode describes how to turn a...Ch. 2 - The following pseudocode describes how to extract...Ch. 2 - Giving change. Implement a program that directs a...Ch. 2 - An online bank wants you to create a program that...Ch. 2 - A video club wants to reward its best members with...Ch. 2 - Consider the following circuit. Write a program...Ch. 2 - The dew point temperature Td can be calculated...Ch. 2 - The pipe clip temperature sensors shown here are...Ch. 2 - Prob. 12PPCh. 2 - Consider the following tuning circuit connected to...Ch. 2 - According to the Coulomb force law, the electric...
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