EBK JAVA HOW TO PROGRAM, LATE OBJECTS
11th Edition
ISBN: 9780134763507
Author: Deitel
Publisher: VST
expand_more
expand_more
format_list_bulleted
Expert Solution & Answer
Chapter 6, Problem 4.1SRE
Explanation of Solution
Method header:
The method header is the signature of the method. The method declaration consists of method header and the body. The parameters are declared in the parameter list which is located inside the parentheses that follow the method name in the method header...
Expert Solution & Answer
Want to see the full answer?
Check out a sample textbook solutionStudents have asked these similar questions
a) Write a boolean method called sumDivisibleByFive that returns true if the sum of the digits of its integer
parameter is divisible by 5 and false otherwise. For example, if the parameter passed to the method is 73
then the sum of its digits is 10 (7+3) The method should return true since 10 is divisible by 5.
b) Write a main method that calls the method sumDivisibleByFive for the values between 10 and 100
inclusive 10 per line. This should output the following numbers:
14 19 23 28 32 3741 46 50 55
64 69 73 78 82 87 91 96
a) Write a boolean method called sumDivisibleByFive that returns true if the sum of the digits of its integer
parameter is divisible by 5 and false otherwise. For example, if the parameter passed to the method is 73
then the sum of its digits is 10 (7+3). The method should return true since 10 is divisible by 5.
b) Write a main method that calls the method sumDivisibleByFive for the values between 10 and 100
inclusive 10 per line. This should output the following numbers:
14 19 23 28 32 37 41 46 50 55
Using java
64 69 73 78 82 87 91 96
3) Write a method that computes the speeding penalties of cars. Given as inputs the speed of the
car, the speed limit, and the number of previous infractions, the method should returns the
speeding penalties using the following rules:
The method returns 0 if the speed of the car is lower or equal to the limit speed, no matter what
is the number of previous infractions
> The method returns 100 if the speed of the car is greater than the limit speed, and the driver did
less than 3 previous infractions
The method returns N*100 (where N is the number of previous infractions) if the speed of the
car is greater than the limit speed, and the number of previous infractions is 3 or more.
Test this method in the main by asking the user to enter the speed of the car, the speed limit,
and the number of previous infractions. The program should then display the speeding penalty.
Sample Run 1:
Enter the speed of the car, the speed limit, and the number of previous
infractions: 50 60 5
Speeding…
Chapter 6 Solutions
EBK JAVA HOW TO PROGRAM, LATE OBJECTS
Ch. 6 - A method is invoked with a(n)Ch. 6 - Prob. 1.2SRECh. 6 - Prob. 1.3SRECh. 6 - The keywordindicates that a method does not return...Ch. 6 - Prob. 1.5SRECh. 6 - Prob. 1.6SRECh. 6 - Prob. 1.7SRECh. 6 - An object of classproduces truly random numbers.Ch. 6 - Prob. 1.9SRECh. 6 - Prob. 1.10SRE
Ch. 6 - Prob. 1.11SRECh. 6 - Prob. 1.12SRECh. 6 - For the class Craps in Fig. 6.8, state the scope...Ch. 6 - the variable die1.Ch. 6 - the method rollDice.Ch. 6 - Prob. 2.4SRECh. 6 - Prob. 2.5SRECh. 6 - Write an application that tests whether the...Ch. 6 - Prob. 4.1SRECh. 6 - Method smallest, which takes three integers x, y...Ch. 6 - Prob. 4.3SRECh. 6 - Method intToFloat, which takes integer argument...Ch. 6 - Find the error in each of the following program...Ch. 6 - 1 int sum(int x, int y) { 2 int result; 3 result =...Ch. 6 - 1 void f(float a); { 2 float a; 3...Ch. 6 - 1 void product() { 2int, a = 6; 3int b = 5; 4int c...Ch. 6 - Declare method sphereVolume to calculate and...Ch. 6 - What is the value of x after each of the following...Ch. 6 - What is the value of x after each of the following...Ch. 6 - What is the value of x after each of the following...Ch. 6 - What is the value of x after each of the following...Ch. 6 - What is the value of x after each of the following...Ch. 6 - What is the value of x after each of the following...Ch. 6 - What is the value of x after each of the following...Ch. 6 - (Parking Charges) A parking garage charges a 2.00...Ch. 6 - (Rounding Numbers) Math.floor can be used to round...Ch. 6 - To round numbers to specific decimal places, use a...Ch. 6 - Prob. 5.1ECh. 6 - Write statements that assign random integers to...Ch. 6 - Write statements that will display a random number...Ch. 6 - (Exponentiation) Write a method integer Power...Ch. 6 - Define a method hypotenuse that calculates the...Ch. 6 - Prob. 10.1ECh. 6 - Prob. 11.1ECh. 6 - (Displaying a Square of Asterisks) Write a method...Ch. 6 - (Displaying a Square of Any Character) Modify the...Ch. 6 - Prob. 14.1ECh. 6 - (Separating Digits) Write methods that accomplish...Ch. 6 - (Separating Digits) Write methods that accomplish...Ch. 6 - Prob. 15.3ECh. 6 - (Temperature Conversions) Implement the following...Ch. 6 - Method fahrenheit returns the Fahrenheit...Ch. 6 - Prob. 16.3ECh. 6 - (Find the Minimum) Write a method minimum3 that...Ch. 6 - Prob. 18.1ECh. 6 - (Prime Numbers) A positive integer is prime if its...Ch. 6 - Prob. 20.1ECh. 6 - (Greatest Common Divisor) The greatest common...Ch. 6 - Write a method qualityPoints that inputs a...Ch. 6 - Write an application that simulates coin tossing....Ch. 6 - (Guess the Number) Write an application that plays...Ch. 6 - Prob. 25.1ECh. 6 - Prob. 26.1ECh. 6 - (Craps Game Modification) Modify the craps program...Ch. 6 - (Table of Binary, Octal and Hexadecimal Numbers)...Ch. 6 - (Computer-Assisted Instruction) The use of...Ch. 6 - Prob. 2MDCh. 6 - Prob. 3MDCh. 6 - (Computer-Assisted Instruction: Difficulty Levels)...
Knowledge Booster
Similar questions
- 3) Write a program called AveMethod (main method) that contains a method called threeAve (method name) that computes the average of three numbers. NO CREDIT if a method is not used. (7 pnts) a) The main method will do the following: asks the user for 3 number (double type). calls the threeAve method print the average of the three numbers b) The threeAve method will do the following: receives 3 numbers (parameters) calculate the average of the three numbers returns the average ● Sample Run: Input the first number: 2.5 Input the second number: 3.5 Input the third number: 6.6 The average is 4.2 Submission ● Copy and paste your code Screen shot the console with the same Sample Run as abovearrow_forwardc# Now, modify the program so that the major functions appear in the following individual methods: GetMonth - This method prompts for and returns the month GetNumMurals - This method prompts for and returns the number of murals scheduled and is called twice -- once for interior murals and once for exterior murals ComputeRevenue - This method accepts the number of interior and exterior murals scheduled, accepts the month they are scheduled, displays the interior and exterior prices, and then returns the total expected revenue DataEntry - This method fills an array with customer names and mural codes and is called twice -- once to fill the array of interior murals and once to fill the array of exterior murals GetSelectedMurals - This method continuously prompts for mural codes and displays jobs of the corresponding type until a sentinel value is entered using systeml using static System.Console; using System.Globalization; class MarshallsRevenue { staticvoidMain() { // Your code here…arrow_forwardT/F 2. The formal parameters occur in the procedure call, while the real parameters appear in the method header.arrow_forward
- use only C# programming Write a method call CubeIt(int x, ref int cube) that takes two arguments and does not return a value. The method will cube the first argument and assign it to the second argument.In your main, call this method twice and print the value of the parameters after each method call. Write a method with the following header: static void CalculateTuitionFee(int numberOfCourses, double costPerCourse, ref double fees). This method will calculate and assign the required fees amount to the third argument. [Fees = number of courses * cost per course + 15.25].From your program Main() method, call the CalculateTuitionFee () method four times supplying different arguments each time and display the value of the third argument after each method call. Write a method that takes four parameter of type int. The method will assign the sum of the first two arguments to the third and the difference of the first two to the fourth. This method should be coded so that the calling…arrow_forwarda) Write a boolean method called productDivisibleByThree that returns true if the product of the digits of its integer parameter is divisible by 3 and false otherwise. For example, if the value passed to the method is 23 then the product of its digits is 6 (2*3). The method should retum true since 6 is divisible by 3. b) Write a main method that calls the method productDivisibleByThree for the values between 10 and 50 inclusive 10 per line. This should output the following numbers: 10 13 16 19 20 23 26 29 30 31 Using java 32 33 34 35 36 37 38 39 40 43 46 49 50arrow_forwardParameter variables are declared a. prior to a method call b. in a method call c. within the body of the method O d. in the method headerarrow_forward
- Hi, this is just an ungraded review guide for my python class. I want to do well on the exam so I am just seeking help because I struggle in some areas. Thank you for your help.QUESTION 1 Given the following statement that calls an object's method, what is the name of the object? What is the name of the method? fridge.get_food() QUESTION 2 The following statements call a function named makeHalf, which returns a value that is half of the argument that was passed to it. Write the code for the makeHalf function. number = 7.75 Result = makeHalf(number) QUESTION 3 Write nested decision structures that perform the following: If Amount1 is greater than 20 and Amount2 is less than 75, display the greater of Amoun1 and Amount2. QUESTION 4 Write a function that accepts a list as an argument (assume the list contains integers) and returns the total of the values in the list. QUESTION 5 Write the first line of the definition for a Laborador class that will extend the Dog…arrow_forwarda) Write a method that calculates the result of the following formula: x + (x + k)*+ (x + 2k)' + (x +3k)+. + (x+ nk) The header of the method is as follows public static double sum(double x, double k, Int n) b) Write a main method in which you ask the user to enter the value of x, and then call the sum method to print the result of the above sum with k- 2.5 and n-10. Sample run 1: Enter the value ofx:-4,5 The result of the sumis-3866,5 Sample run 2: Enter the valuc of .2 The reout of theoun aarrow_forwardc#arrow_forward
- 2) Two integers are said to be relatively prime if their greatest common divisor (GCD) is one. For example 12 and 13 are relatively prime, but 12 and 14 are not. a. Write a method called relativelyPrime that accepts two integer parameters A and B. The method should output if A, and B are relatively prime or nat. Use the following method header: public static void relativelyPrime(int A, int B) b. Write a test program (main) to test the method by asking the user to input two positive integers X and Y. Then the program will call the method relativelyPrime to output if X and Y are relatively prime or not. Sample Run 1: Enter Two positive integers X and Y: 12 13 12 and 13 are relatively prime Sample Run 2: Enter Two positive integers X and Y: 12 14 12 and 14 are not relatively primearrow_forward(f) Write a non-static method isMultiple that determines, for a pair of integers, whether the second integer is a multiple of the first. The method should take two integer arguments, return true if the second is a multiple of the first, and return false otherwise.arrow_forwardNote: Provide a copy of the code and screen shot for the output in the solutions. Explain the working of the program in your own words. 2. Write a C# application that asks the user to input the required data to implement the three methods below: (Use Method Overloading to write the methods) a. Method Area that takes as input, integer values I' (length) and 'w' (width), calculates the area of a rectangle, and displays it. [Area = 1x w] b. Method Area that takes as input, double values 'B' (base) and 'h' (height), calculates the arca of a parallelogram, and displays it. [Arca = B x h] c. Method Area that takes as input, a double value "B' (base) and an integer value 'h' (height), calculates the area of a triangle, and displays it. [Area = Bh] Sample I/O Enter the length of the rectang le: Enter the width of the rectangle: 3 Enter the base of the parallelogran: 3.2 Enter the height of the parallelogram: 6.1 Enter the hase of the triangle: 4.2 Enter the he ight of the triangle: 10…arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- EBK JAVA PROGRAMMINGComputer ScienceISBN:9781337671385Author:FARRELLPublisher:CENGAGE LEARNING - CONSIGNMENTMicrosoft Visual C#Computer ScienceISBN:9781337102100Author:Joyce, Farrell.Publisher:Cengage Learning,Programming Logic & Design ComprehensiveComputer ScienceISBN:9781337669405Author:FARRELLPublisher:Cengage
EBK JAVA PROGRAMMING
Computer Science
ISBN:9781337671385
Author:FARRELL
Publisher:CENGAGE LEARNING - CONSIGNMENT
Microsoft Visual C#
Computer Science
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Cengage Learning,
Programming Logic & Design Comprehensive
Computer Science
ISBN:9781337669405
Author:FARRELL
Publisher:Cengage