The C hard drive is the central internal hard drive in a computer it is the hard drive that comes inside the computer when you buy it and is non-removable
Answer:
margins
Explanation:
the definition margins are the edges
Answer: Goal-oriented analysis
Explanation: Goal-oriented analysis is the analyzing activity for focusing on a specific aim or task to be achieved in a desired manner. This analysis requires a high amount of focus , setting the target or goal and the strength and capability to achieve that objective.
Other options are incorrect because sensitivity analysis is analyzing the sensitivity of any task, what-if analysis considers the changing the values of certain function to check the outcome and goal-seeking analysis is analysis in which the output that is to be achieve is already known.
Thus, the correct answer is goal-oriented analysis.
Answer:
Explanation:
The following is written in Java. It creates the function that takes in two int values to calculate the gcd. It includes step by step comments and prints the gcd value to the console.
public static void calculateGCD(int x, int y) {
//x and y are the numbers to find the GCF which is needed first
x = 12;
y = 8;
int gcd = 1;
//loop through from 1 to the smallest of both numbers
for(int i = 1; i <= x && i <= y; i++)
{
//returns true if both conditions are satisfied
if(x%i==0 && y%i==0)
//once we have both values as true we store i as the greatest common denominator
gcd = i;
}
//prints the gcd
System.out.printf("GCD of " + x + " and " + y + " is: " + gcd);
}