Answer:
I'm looking for this one too
Answer:
Positive feedback
Explanation:
A feedback is a process where a system responds to an external or internal stimulus. There are two major types of feedback in a system, they are negative and positive feedback.
Positive feedback is a type of response that occur when an output or response is an enhancement of the input. It's output moves further away from equilibrium.
A negative feedback occur when a fraction of the output is fed back to the system to control fluctuation of other output.
Answer:
spiderman i believe. by post malone
Explanation:
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.