Answer:
employee list.
Explanation:
An employee list can be defined as a textual document that comprises of important informations such as names, contact address, gender, religion, next of kin, home address etc., about an employee working in an organization or business firm.
In this scenario, a human-resources director creates a report containing the names and contact information of employees at the company. Thus, this report represents an employee list.
The main purpose of an employee list is to provide a detailed description or information about all of the employees working in an organization at a specific period of time.
These students analyze each question, and eliminate each wrong answer they know are wrong. Even if they are unsure of the answer. They have a better chance of getting the answer right than the ones who dont.
The answer is C, ROM often stores the basic instructions a computer needs when powering on, part if the BIOS.
Answer:
import java.util.Scanner;
public class num2 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int count =0;
int total = 0;
System.out.println("Enter the numbers");
int num = in.nextInt();
while(num!=-1){
total = total+num;
count++;
System.out.println("Enter the next number");
num = in.nextInt();
}
//Compute the average
double average = (double) total/count;
//Outputs
System.out.println("Total count of numbers entered "+(count));
System.out.println("Sum of the numbers "+total);
System.out.printf("Average is %.2f ",average);
}
}
Explanation:
- Using java programming language
- Import scanner class to receive user input
- declare variables count and total and initialize to zero
- Prompt user to enter numbers
- Use a while statement with the condition while(num!=-1)
- Within the while body keep prompting user to enter a number, increase count and update total
- when -1 is entered the loop breaks and average is calculated
- Use printf() method to print average to 2 decimal places.
You just have to put it into a computer and a file is gonna come up