Answer:
c. are based on statistical data, measurement and metrics
Explanation:
Data driven process are process that are not based on intuition but rather are based on data. This data serves as evidence to back a decision that is to be taken. It therefore means that, whatever decision that will be taken, such a decision will be based on the data presented.
Answer:
import java.util.Scanner;
public class num6{
static int getTestScores(){
System.out.println("Enter the Score");
Scanner in = new Scanner(System.in);
int score = in.nextInt();
return score;
}
static double calcAverage(int score1, int score2, int score3){
return (score1+score2+score3)/3;
}
static void displayAverage(double ave){
System.out.println("The Average is "+ave);
}
public static void main(String[] args) {
int num1 = getTestScores();
int num2 = getTestScores();
int num3 = getTestScores();
//Calling Calculate Average
double average = calcAverage(num1,num2,num3);
//Calling displayAverage
displayAverage(average);
}
}
Explanation:
- Using Java programming Language
- Create the four methods
- getTestScores() Uses the Scanner Class to receive an in variable and return it
- calcAverage() accepts three ints as parameter calculates their average and return it
- displayAverage() Accepts a double and prints it out with a concatenated string as message
- In the Main Method, getTestScores is called three times to obtain three numbers from the user
- calAverage is called and handed the three numbers
- printAverage is called to output the calculated average
Answer:
A reference file is mainly used for reference or look-up purposes. Look-up information is that information that is stored in a separate file but is required during processing.
Explanation:
Hope this helps ;)
An IDE is a software package that provides an editor, a compiler, and other programming tools.
<h3>What is a Software package?</h3>
A software package may be defined as the collection of files and detailed information about those files that need by the hardware to perform a specific function.
In other words, a software package is characterized as multiple applications or code modules that work together in order to meet various goals and objectives.
IDE stands for an integrated development environment that significantly combines common developer tools into a single graphical user interface.
Therefore, a software package that provides an editor, a compiler, and other programming tools is known as IDE.
To learn more about the Software package, refer to the link:
brainly.com/question/11283516
#SPJ4
For purposes of freeeing up some hard disk space and find the biggest files on you, there are couple of ways one can do so.
Using explorer, open my computer and then click on the search box at the top most right side. A little window will pop up with several options. Since you want to find the biggest files you will select size:Largest option. You can also press WIN + F on the keyboard and follow the same procedure.