answersLogoWhite

0

2178 x 4 = 8712

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

I am a three digit number. The sum of my digits is 18. When I reverse my digits and subtract the new number from the original number you get 99. What number I am?

whats the answer please??


If 27 is added to a twi digit number the result is a number with the same digits but in reverse order The sum of the digits is 11 What is the original number?

38


How to multiply numbers while considering significant digits?

When multiplying numbers with significant digits, count the total number of significant digits in each number. Multiply the numbers as usual, but round the final answer to match the least number of significant digits in the original numbers.


How do you know that a numeric is palindrome or not using c or pascal language?

Reverse the digits then check of the new number is the same as the original number.


The sum of the digits in a two digit number is 17 If the digits are reversed the new number will be 9 less than the original number What is the original number?

To total 17 the two digits must be 8 and 9! The original number was 98.


What is the 11 finger trick and how does it work?

The 11 finger trick is a math trick where you can quickly multiply numbers by 11. To use the trick, you separate the digits of the number you want to multiply by 11, add the two digits together, and place the result in between the original digits. This works because 11 is the same as 10 1, so when you add the two digits together and place the result in between, you are essentially multiplying the original number by 10 and then adding the original number to it.


How to check the divisibility by 23?

Multiply the last digit by 7. Subtract that number from the remaining digits. If that number is divisible by 23, then the original number is divisible by 23.


What five digits number when you multiply by four is the same the number when you reversed it?

five digits number when you multiply by four is the same the number when you reversed it is 21978*4 = 87912


What number can multiply all numbers or digits?

the number one.


Can you explain the 11 finger trick in detail?

The 11 finger trick is a mental math technique where you can quickly multiply numbers by 11. To use this trick, you separate the digits of the number you want to multiply by 11, add the digits together, and place the sum in the middle of the original number. This allows you to calculate the product of the original number and 11 without using traditional multiplication methods.


How will you multiply on a number line?

by moving each digits


Could you please tell me the Palindrome number checking code?

The most efficient method is to reverse the digits in the number and then check if the reversed number is equal to the original number. In C, we can implement this as follows (using long-hand notation for clarity). Note the use of base (defaulting to base 10) so that we can check values in other bases. bool is_palindrome (unsigned num, unsigned base = 10) { // local variables unsigned rev, digit, digits; // copy the input number digits = num; // initialise the accumulator rev = 0; // repeat while there are digits while (digits) { // extract the low-order digit using modulo (%) operator digit = digit % base; // shift the accumulated digits (if any) one position to the left rev = rev * base; // add on the new digit rev = rev + digit; // shift the remaining digits one position to the right digits = digits / base; } // end while // return true if the number and its reverse are equal return num == rev; }