Need help with 5, 6, and 7 if possible.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Java Code
Need help with 5, 6, and 7 if possible.

7. Write a public static method named getProdOfAllNegativelnts that takes in 1 int argument and
returns the product of all the values between -1 and that number.
If the argument is NON-negative return 0
8. Write a public static method named isProdOfAllNegativelnts Negative that takes in 1 int argument
and returns true if the product of all the values between -1 and that number is negative, and false
otherwise.
9. Write a public static method named getCharAtIndex that takes in 2 arguments, a String s, and an
int index. The method should return the char found at the index location of the string or if not found
return a '?'
10. Write a public static method named getCountOfCharlnString that takes in 2 arguments, a String s,
and a char c. The method should return an int representing the number of times the char was found
within the string.
11. Write a public static method named getStringReversed that takes in 1 argument of type String and
returns the String in reverse order.
Transcribed Image Text:7. Write a public static method named getProdOfAllNegativelnts that takes in 1 int argument and returns the product of all the values between -1 and that number. If the argument is NON-negative return 0 8. Write a public static method named isProdOfAllNegativelnts Negative that takes in 1 int argument and returns true if the product of all the values between -1 and that number is negative, and false otherwise. 9. Write a public static method named getCharAtIndex that takes in 2 arguments, a String s, and an int index. The method should return the char found at the index location of the string or if not found return a '?' 10. Write a public static method named getCountOfCharlnString that takes in 2 arguments, a String s, and a char c. The method should return an int representing the number of times the char was found within the string. 11. Write a public static method named getStringReversed that takes in 1 argument of type String and returns the String in reverse order.
So far in this course, all of your programs have been written to be fully contained inside a single method
named main. The main method is where Java begins execution of your program. In this assignment, you
will be coding other methods in addition to the main method. These additional methods will perform
specific functions and, in most cases, return results. Write all your methods in a class named
Homework6Methods.java
1. Write a public static method named getMaxOf2Ints that takes in 2 int arguments and returns the
Maximum of the 2 values
2. Write a public static method named getMinOf2Ints that takes in 2 int arguments and returns the
Minimum of the 2 values
3. Write a public static method named getMaxOf3Ints that takes in 3 int arguments and returns the
Maximum of the 3 values
4. Write a public static method named getMedian Of3Ints that takes in 3 int arguments and returns the
Median Value of the 3 values
5. Write a public static method named printMinOf3Ints that takes in 3 int arguments of type int and
prints the minimum value of those 3 ints
Example: "The min is " + minVal
6. Write a public static method named getProdOfAllPositivelnts that takes in 1 int argument and
returns the product of all the values between 1 and that number.
If the argument is NON-positive return 0
Transcribed Image Text:So far in this course, all of your programs have been written to be fully contained inside a single method named main. The main method is where Java begins execution of your program. In this assignment, you will be coding other methods in addition to the main method. These additional methods will perform specific functions and, in most cases, return results. Write all your methods in a class named Homework6Methods.java 1. Write a public static method named getMaxOf2Ints that takes in 2 int arguments and returns the Maximum of the 2 values 2. Write a public static method named getMinOf2Ints that takes in 2 int arguments and returns the Minimum of the 2 values 3. Write a public static method named getMaxOf3Ints that takes in 3 int arguments and returns the Maximum of the 3 values 4. Write a public static method named getMedian Of3Ints that takes in 3 int arguments and returns the Median Value of the 3 values 5. Write a public static method named printMinOf3Ints that takes in 3 int arguments of type int and prints the minimum value of those 3 ints Example: "The min is " + minVal 6. Write a public static method named getProdOfAllPositivelnts that takes in 1 int argument and returns the product of all the values between 1 and that number. If the argument is NON-positive return 0
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 5 steps with 6 images

Blurred answer
Knowledge Booster
Keywords
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
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education