Advanced Placement (AP)

SHOW ALL YOUR WORK. REMEMBER THAT PROGRAM SEGMENTS ARE TO BE WRITTEN IN JAVA. Assume that the classes listed in the Java Quick Reference have been imported where appropriate. Unless otherwise noted in the question, assume that parameters in method calls are not null and that methods are called only when their preconditions are satisfied. In writing solutions for each question, you may use any of the accessible methods that are listed in classes defined in that question. Writing significant amounts of code that can be replaced by a call to one of these methods will not receive full credit. This question involves computing the greatest common factor between two positive integers and using greatest common factors to reduce fractions. You will write two methods in the NumberSystem class that follows. public class NumberSystem{/** Precondition: a and b are positive integers.* Returns the greatest common factor of a and b, as described in part (a).*/public static int gcf(int a, int b){ /* to be implemented in part (a) */ }/** Precondition: numerator and denominator are positive integers.* Reduces the fraction numerator / denominator* and prints the result, as described in part (b).*/public static void reduceFraction(int numerator, int denominator){ /* to be implemented in part (b) */ }}The greatest common factor (GCF) of two integers a and b is the largest integer that divides evenly into both a and b. For example, the GCF of 8 and 12 is 4.The greatest common factor can be computed using the following rules. Case I: If a is evenly divisible by b, then the GCF is b. Case II: If a is not evenly divisible by b, then the GCF of a and b is equal to the GCF of b and the remainder when a is divided by b. If the rule in case II is repeatedly applied, it is guaranteed to eventually result in case I. Consider the following examples. Example 1In determining the GCF of 30 and 3, case I applies because 30 is evenly divisible by 3. Therefore, the GCF of 30 and 3 is 3.Example 2In determining the GCF of 3 and 30, case II applies because 3 is not evenly divisible by 30. The GCF of 3 and 30 will be equal to the GCF of 30 and the remainder when 3 is divided by 30, or 3.In determining the GCF of 30 and 3, case I applies because 30 is evenly divisible by 3. The GCF of 30 and 3 is 3, and therefore the GCF of 3 and 30 is also 3.Example 3In determining the GCF of 24 and 9, case II applies because 24 is not evenly divisible by 9. The GCF of 24 and 9 will be equal to the GCF of 9 and the remainder when 24 is divided by 9, or 6.In determining the GCF of 9 and 6, case II applies because 9 is not evenly divisible by 6. The GCF of 9 and 6 will be equal to the GCF of 6 and the remainder when 9 is divided by 6, or 3.In determining the GCF of 6 and 3, case I applies because 6 is evenly divisible by 3. The GCF of 6 and 3 is 3, and therefore the GCF of 24 and 9 is also 3.Example 4In determining the GCF of 7 and 3, case II applies because 7 is not evenly divisible by 3. The GCF of 7 and 3 will be equal to the GCF of 3 and the remainder when 7 is divided by 3, or 1.In determining the GCF of 3 and 1, case I applies because 3 is evenly divisible by 1. The GCF of 3 and 1 is 1, and therefore the GCF of 7 and 3 is also 1.(a) The gcf method returns the greatest common factor of parameters a and b, as determined by case I and case II. Write the gcf method below. You are encouraged to implement this method recursively./** Precondition: a and b are positive integers.* Returns the greatest common factor of a and b, as described in part (a).*/public static int gcf(int a, int b)

answer
Answers: 1

Other questions on the subject: Advanced Placement (AP)

image
Advanced Placement (AP), 25.06.2019 13:30, corcor19
Arandom variable x has a mean of 10 and a standard deviation of 3. if each value of x is multiplied by 2, what will the new mean and standard deviation be?
Answers: 1
image
Advanced Placement (AP), 26.06.2019 08:00, alexandergoetz4857
Which of these is a disadvantage of hydrogen fuel cells? a. engines that use hydrogen fuel are more efficient than gasoline-powered engines. b. the only emission produced by hydrogen fuel cells is water. c. hydrogen fuel is continually available and useful for heating. d. hydrogen fuel is often purified in a process that emits lots of greenhouse gases.
Answers: 1
image
Advanced Placement (AP), 27.06.2019 08:00, NotYourStudent
30 points to the best/brainliest answer ps. this is an ap human geography question but i didn't know what category to put it inwhat religious and/or political dimensions are attached to the china and tibet conflict? explain
Answers: 1
image
Advanced Placement (AP), 27.06.2019 13:30, simeragrundy14
Researchers are conducting a study in an attempt to establish a linear relationship between the number of online music video views and the number of guitar sales. a computer output for regression is shown and is based on a sample of seven observations. predictor coeff st. dev t ratio p-value constant 7.85671094 1.316226455 5.969118 0.001889 music video views 0.094781123 0.027926367 3.393965 0.019378 what represents the 99% confidence interval for the slope of the regression line? 0.0948 ± 3.499(1.3162) 0.0948 ± 4.032(1.3162) 0.0948 ± 3.707(0.0279) 0.0948 ± 4.032(0.0279)
Answers: 2
Do you know the correct answer?
SHOW ALL YOUR WORK. REMEMBER THAT PROGRAM SEGMENTS ARE TO BE WRITTEN IN JAVA. Assume that the classe...

Questions in other subjects: