Answer:
import java.util.Scanner;
public class num10 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Enter the numbers to add up. enter 999 to stop");
int num = in.nextInt();
int sum = 0;
while (num!=999){
sum = sum+num;
System.out.println("Enter the next number");
num = in.nextInt();
}
System.out.println("The sum is: "+sum);
}
}
Explanation:
The application is implemented in Java
A while loop is used to continously prompt user for inputs. The condition of the while loop is while (num!=999)
When the number 999 is entered, it displays the sum which is initialized to 0
Answer:
FAT32 is the correct answer to the given question
Explanation:
FAT32 is a storage structure that is used for the purpose of the storage media. The main objective of the file system to manage the files on the hard drives, SSD, etc.
- FAT32 is utilizing the 32-bit pieces of data for grouping of information in the hard disk.
- The main advantage of the FAT32 file system it can format a USB drive that is recognized by all computer systems.
- FAT32 is required less memory space on massive partitions of the hard disk.
Ask anything here: https://www.answers.com/search?q=Ask%20any%20question&filter=all