Numeric data because it consist of numbers
Answer:
Communication
Explanation:
The ability to communicate clearly when working with customers is a key skill because miscommunications can result in disappointment and frustration. The best customer service professionals know how to keep their communications with customers simple and leave nothing to doubt.
Answer:
a and d
Explanation:
A. Run the parted command
D. Reboot the system
These two actions will make it easier to manually reload the fdisk
import Java.util*
public class Average{
public static void main(String [] args){
int sum = 0;
int numbers = 0;
for(int i = 0; i < 5; i++){
Scanner sc = new Scanner(System.in);
System.out.println(“Please enter your integers: “);
numbers = sc.nextInt();
sum += numbers;
}
System.out.println(“The average is: “ + sum/5)”
}
}