Answer:
This is your answer please check this ✔
Answer:
Detailed procedure for UNIX backup programs to dump files is attached in picture.
Explanation:
See attached picture.
Answer:
import java.util.Scanner;
public class num8 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Enter month's budget");
double monthBudget = in.nextDouble();
double totalExpenses = 0.0;
double n;
do{
System.out.println("Enter expenses Enter zero to stop");
n = in.nextDouble();
totalExpenses += n;
}while(n>0);
System.out.println("Total expenses is "+totalExpenses);
System.out.println("The amount over your budget is "+ Math.abs(monthBudget-totalExpenses));
}
}
Explanation:
- Using Java programming language
- Prompt user for month's budget
- Use Scanner class to receive and store the amount entered in a variable
- Use a do while loop to continuously request user to enter amount of expenses
- Use a variable totalExpenses to add up all the expenses inside the do while loop
- Terminate the loop when user enters 0 as amount.
- Subtract totalExpenses from monthBudget and display the difference as the amount over the budget
Answer:
Classification.
Explanation:
Classification is the wide field of data mining apps that analyzes data and establishes rules for making a distinction in specified classes.
Data mining is a method that corporations use to transform the raw information into valuable information. Corporations can understand something about their clients through using technology to identify trends in large quantities of info to create more successful marketing campaigns, increase revenue and reduce costs.
1. DOS is single tasking OS. Windows is multi-tasking OS.
2. DOS consumes quite low power. Windows consumes high power.
3. DOS memory requirements are quite low. Windows memory requirements are quite high as compared to DOS.
4. DOS has no support for networking. Windows supports networking.
5. Multimedia is not supported in DOS. Windows supports multimedia likes games, videos, audios etc.