Answer:-
Program:-
Python Code:
import math
n = int(input("How many bowling balls will be manufactured? "))
d = float(input("What is the diameter of each ball in inches? "))
cv = float(input("What is the core volume in inches cubed? "))
V = (4/3)*math.pi*math.pow((d/2), 3)
requiredVolume = (V - cv)*n
print("You will need", requiredVolume, "inches cubed of filter")
Output

1. [ball_filler.py] You have been contracted by a bowling ball manufacturer to write a program that...
C program (File Processing - Writing) The same Bicycle shop that contracted you to write the double array problem in HW5 has now decided that they want to keep a log of all employee transactions. Write a program that will allow users to enter in their name (you only need to use first name) and the item that they sold (for example, “James Bicycle”). After each employee types in a sale, your program should record that sale in a file...
I HAVE A PROBLE WITH THIS JAVA PROBLEM CAN ANYONE HELP ME
PLEASE.
Exercise 2 Write a program that simulates the Texas Powerball lottery. You will have to do research to find out how many numbers are drawn, and what the range(s) of the numbers are. For this exercise you need to create a class called "Powerbali", which exposes a public function called play'. This function accepts several parameters , which represent the individual numbers the player wants to play....
Project 1, Program Design 1. Write a C program replace.c that asks the user to enter a three-digit integer and then replace each digit by the sum of that digit plus 6 modulus 10. If the integer entered is less than 100 or greater than 999, output an error message and abort the program. A sample input/output: Enter a three-digit number: 928 Output: 584 2. Write a C program convert.c that displays menus for converting length and calculates the result....
You have been asked to write a program to grade several multiple-choice exams. The exam has 20 questions, each answered with a letter in the range of ‘a’ through ‘f’. The answers key is declared in the program as constant of type string. An example of answer key is “abcdefabcdefabcdefab”. Your program should work for any other answer key. The program should first ask users for the number of students to be graded. Then it should have a while loop...
Looking for some help with this Java program I am totally lost
on how to go about this.
You have been approached by a local grocery store to write a program that will track the progress of their sales people (SalesPerson.java) The information needed are: D Number integer Month 1 Sales Amount-Double Month 2 Sales Amount-Double Month 3 Sales Amount-Double Write a Java program that allows you to store the information of any salesperson up to 20 While the user...
(C++ Program) 1. Write a program to allow user enter an array of structures, with each structure containing the firstname, lastname and the written test score of a driver. - Your program should use a DYNAMIC array to make sure user has enough storage to enter the data. - Once all the data being entered, you need to design a function to sort the data in descending order based on the test score. - Another function should be designed to...
Lab 1: InheritanceTest Write a program called InheritanceTest1.java to support an inheritance hierarchy for class Point–Square–Cube. Use Point as the superclass of the hierarchy. Specify the instance variables and methods for each class. The private data of Point should be the x-y coordinates, the private data of Square should be the sideLength, and the private data of Cube should be depth. Provide applicable accessor methods, mutator methods, toString() methods, area() method, and volume() method to all classes. Write a program...
Write a program called CountCoins.java that prompts the user for the input file name (you can copy the getInputScanner() method given in the ProcessFile assignment) then reads the file. The file contains a series of pairs of tokens, where each pair begins with an integer and is followed by the type of coin, which will be “pennies” (1 cent each), “nickels” (5 cents each), “dimes” (10 cents each), or “quarters” (25 cents each), case-insensitively. Add up the cash values of...
Your company needs you to create a program that estimates the
amount of various supplies you need for a month based on past sales
performance. This way the warehouse can be better prepared for your
monthly stock requests. When your program runs, it will first ask
you how many clients you have active for the month. Based on the
number you provide, it will then perform calculations to estimate
how many units of each product you need for the month....
Need a Java program, great if anyone is able to help You have been asked to write an analysis of the deer population by town in New Jersey. The accompanying file contains data about each town. The format of the file is the name of the town, square miles and the number of deer counted. You will need to produce the report as follow: Township Square Deer Deer Per Deer/Tick Tick Threat Name Miles Population Square Mile Coefficient Indicator Green...