CREATE A FLOWCHART THAT WILL INPUT 2 NUMBERS AND

THAT WILL COMPUTE FOR THE SUM,PRODUCT,DIFFERENCE
AND QUOTIENT OF IT

To create a flowchart that inputs two numbers and computes their sum, product, difference, and quotient, you can follow these steps:

Step 1: Start
Step 2: Input the first number (Num1)
Step 3: Input the second number (Num2)
Step 4: Compute the sum (Sum = Num1 + Num2)
Step 5: Compute the product (Product = Num1 * Num2)
Step 6: Compute the difference (Difference = Num1 - Num2)
Step 7: Check if Num2 is not zero (to avoid division by zero)
- If Num2 is not zero, go to Step 8
- If Num2 is zero, go to Step 10
Step 8: Compute the quotient (Quotient = Num1 / Num2)
Step 9: Output the sum, product, difference, and quotient
Step 10: Output the sum, product, and difference (omitting quotient since division by zero is not allowed)
Step 11: End

Here is a simplified flowchart representation of the above steps:

```
┌─────────┐
│ Start │
└─────────┘


┌─────────┐
│ Input │
│ Num1 │
└─────────┘


┌─────────┐
│ Input │
│ Num2 │
└─────────┘


┌─────────┐
│ Compute │
│ Sum │
└─────────┘


┌─────────┐
│ Compute │
│ Product │
└─────────┘


┌─────────┐
│ Compute │
│Diff │
└─────────┘
│ ┌─────────────┐
└──────────►│Num2 ≠ 0? │
└─────────────┘


┌──────────┴───────────┐
│ Yes │
└──────────┬───────────┘


┌─────────┐
│ Compute │
│Quotient │
└─────────┘


┌───────────┐
│ Output │
│Sum, Product,│
│ Difference, │
│ Quotient │
└───────────┘


┌───────────┐
│ Output │
│Sum, Product,│
│ Difference │
└───────────┘


┌───────┐
│ End │
└───────┘
```

You can follow this flowchart to input the two numbers, perform the required calculations, and display the results.