Answer:
The best advice for Zoom Vacuum is to start with a Transaction Processing System(TPS). This system will process all the day to day transactions of the system. It is like a real time system where users engage with the TPS and generate, retrieve and update the data. it would be very helpful in lowering the cost of production and at the same time manufacture and produce standard quality products.
Although, TPS alone would not be sufficient enough. so Management Information System(MIS) would be needed, that can get the data from the TPS and process it to get vital information.
This MIS will bring about information regarding the sales and inventory data about the current and well as previous years.
With the combination of TPS as well as MIS is a minimum requirement for a Zoom Vacuum to become successful in the market.
Explanation:
Solution
When we look at the description of the Zoom Vacuum manufacturing company closely, we see that the business is currently a small scale business which is trying to become a small to mid scale business. This claim is supported by the fact that there is only one manufacturing plant and three warehouses. And here, we also need to have the knowledge of the fact that small business major aim is to keep the cost low and satisfy the customers by making good products. So we need to suggest what information system is best suited for small scale business enterprises.
The best recommendation would be to start with a Transaction Processing System(TPS). This system will process all the day to day transactions of the system. It is like a real time system where users interact with the TPS and generate, retrieve and modify the data. This TPS would be very helpful in lowering the cost of production and at the same time manufacture and produce standard quality products . Also TPS can help in communicating with other vendors.
But TPS along would not be sufficient. Also Management Information System(MIS) would be required that can get the data from the TPS and process it to get vital information. This MIS will help in generating information regarding the sales and inventory data about the current and well as previous years. Also MIS can create many types of graphical reports which help in tactical planning of the enterprise.
So a combination of TPS as well as MIS is a minimum requirement for a Zoom Vacuum to become successful in the market.
Answer:
A computer is a machine that can be programmed to carry out sequences of arithmetic or logical operations automatically. Modern computers can perform generic sets of operations known as programs. These programs enable computers to perform a wide range of tasks. A computer system is a "complete" computer that includes the hardware, operating system (main software), and peripheral equipment needed and used for "full" operation. This term may also refer to a group of computers that are linked and function together, such as a computer network or computer cluster
Answer:
import java.util.Scanner;
public class DataConstraint {
public static void main(String[] args) {
System.out.print("Enter month, day, year separated by spaces :");
Scanner sc=new Scanner(System.in);
int M,D,Y;
M=sc.nextInt();
D=sc.nextInt();
Y=sc.nextInt();
if(1<=M && M<=12 && 1<=D && D<=31 && Y>=1)
{
if(M==4 || M==6 ||M==9 || M==11){
if(D==31) {
System.out.println("month "+M+" can not have more than 30 days");
System.exit(0);
}
}
else if(M==2)
{
if((Y%400==0) || (Y%4==0 && Y%100!=0)) {
if(D>=30) {
System.out.println("month "+M+" cannot have "+D+" days");
System.exit(0);
}
}
else {
if(D>=29) {
System.out.println(Y+" is not a leap year, "+D+" is invalid");
System.exit(0);
}
}
}
System.out.println(M+" "+D+" "+Y+" is a valid date");
}
else{
if(1>=M || M>=12) System.out.println(M+" is not a valid month");
if(1>=D || D>=31) System.out.println(D+" is not a valid date");
if(Y<1) System.out.println("year can not be negative");
}
}
}
Explanation:
- Use a conditional statement to check the month is between 1 and 12.
- Check that the date is between 1 and 31 and year must be positive value.
- If no. of days are more than 29, then the year cannot be a leap year.