Write a program that prompts the user to input two numbers—a numerator and a divisor. Your program should then divide the numerator by the divisor, and display the quotient and remainder without decimals.
Explanation:
The code below is written in python :
a=int(input("Enter the first number: "))
b=int(input("Enter the second number: "))
quotient=a//b
remainder=a%b
print("Quotient is:",quotient)
print("Remainder is:",remainder)
1. User must enter the first and second number .
2. The quotient is obtained using true division (// operator).
3. The modulus operator gives the remainder when a is divided by b.
Mail Merge is the correct answer. I had this assignment a few months ago.
What are some of the challenges that could arise from setting up a file management system on a computer
Answer:C - All the elements of the database will be built specifically for that file and for that purpose, with no surprises or mysteries.
Explanation: I just took it
Answer: It would be the last three
Explanation: just did it on edge and got 100%