answersLogoWhite

0

multply the answer by the divisor then add the remainder

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What is the qotient of 45 and 5?

9


What is a qotient?

In math it means that It's the answer you get from a division problem


What is the qotient of 132 and 11?

It is: 132/11 = 12


How Write a cprogram to find all the numbers divisible by 5and7 between 1to100?

To check for divisibility, use the "%" operator - the remainder of a division. If the remainder is 0, it is divisible.for (i = 1; i


How can you check your division with remainder?

multiply ur answer and the number u divided it with and add the remainder


How do you check a division problem with no remainder?

then do the oppsite.Multiply.


how can you check the corectness of a division answer that has no remainder?

you cant


How can you check an answer quotient with a remainder?

To check an answer quotient with a remainder, you can use the formula: ( \text{Dividend} = (\text{Quotient} \times \text{Divisor}) + \text{Remainder} ). Multiply the quotient by the divisor, then add the remainder to that product. If the resulting value equals the original dividend, your answer is correct. This method confirms that both the quotient and the remainder are accurate.


How do you make a program to check the remainder in gw-basic?

Use the MOD operator to get the remainder of integer division.


Explain how to check a division problem when it has a remainder?

Multiply the quotient times the dividend and then add on the remainder to the product.


How do you check the answer to a division question in which there is a remainder?

You multiple the answer you got and you will get your answer


How do you make a program to check remainder is zero or not inGW-BASIC?

So you have a number - "Number" and you need to find if the remainder of dividing it by a number is 0. Number = 3 If Number Mod 2 = 0 then Msgbox("Remainder of 0") End If This function divides by 2 then gives the remainder, this let's you check if a number is odd or even.