answersLogoWhite

0


Best Answer

Because the quotient 62/7 is a smaller number than the quotient 62/5.

Specifically, 5 goes into 62 more than 10 times, but 7 goes into 62 less than 10 times.

Once you pass ten, you generally need another place-value (digit) before the decimal

point, in order to represent the number in all of its scope and grandeur.

User Avatar

Wiki User

βˆ™ 12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why does 62 divide by 5 have two digits in the quotient while 62 divide by 7 has only one digit in the quotient?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Why does 51divided by 4 have two digits in the quotient while 51divided by 6 has only one digit in the quotient?

Because, you can divide 51 divided by 4 is 12 times. And if you divide 51 divided by 6 it’s only 8 times


How do you make a program that counts how many times each digit occured in the integer?

To count the number of times a digit occurs in an integer, start by initializing an array of ten counts of digits, such as int digits[10];Then, in a loop while the number is non zero, increment the element in the digits array that corresponds to the units digit, and then divide the number by ten, such as digits[number%10]++ and number/=10;int digits[10];int i;int number = some number;for (i=0; i


How many even 3-digit numbers can be formed from the digits 1 2 3 and 5 if each digit can be used only once?

The final digit must be a 2 to form an even number. The first digit may be any of three remaining digits (1, 3, 5) while the second digit may be any of the two remaining digits. All together, that makes 3*2 = 6 distinct even numbers.


What is the divisor and which is the dividend in the problem 7 divided by 9?

0.7778


How do you extract digits from an integer in java?

There are different ways to do it. One is to convert it to a String, then use the string manipulations methods to extract individual digits as strings. You can then convert them back to numbers. Another is to do some calculations. For example, to get the last digit: int i = 12345; int lastdigit = i % 10; //To get additional digits, divide by 10 and repeat: i /= 10; int lastdigit = i % 10; In this case you can create a loop for this (repeating while i > 0), and copy the digits to an array.


How do you write a visual basic program to sum the odd number digits of a 12 digit code using division and Mod and while loops?

Function sum_odd_digits(ByVal number As Integer) As Integer Dim digit As Integer sum_odd_digits = 0 While number <> 0 digit = number Mod 10 If digit And 1 Then sum_odd_digits = sum_odd_digits + digit number = number / 10 End While End Function


How many digits does a valid credit card number contain?

The number of digits in a valid credit card can change depending upon the type of card. Mastercard and VISA use a 16 digit system, while others including American Express use a 15 digit system.


What determines the number of digits in a measurement?

The magnitude of the characteristic that is being measured and the units of measurement used to measure it. Examples: Change in magnitude: A small dog might have a mass of 5 kg (1 digit) while an [Asian] elephant might be 5000 kg (4 digits). Change in units: A small dog may be 5 kg (1 digit) or 5000 grams (4 digits) or 5000000 milligrams (7 digits).


What is the length of a phone number?

7 or 10 digits in the US. While much of the US has moved to ten digit dialing, rural areas still use seven digit dialing, omitting the common area code.


In java how do you take a variable which is a long and grab single digits from it from right to left for ex if 124578 was entered I would want the 8 then 7 then 5?

public static final void getSumDigits(long n) { while( n != 0 ) { // Mod by 10 to get the right most digit final long rightMostDigit = n % 10; // Do whatever you need to do with that digit System.out.println(rightMostDigit); // Divide by 10 to chop off the right most digit n /= 10; } }


Can you find a six digit combination if the second digit is given?

You would need more information - you still have 100,000 different combinations for the remaining five digits. In theory you could try them out one by one, but that will take quite a while.


Do all foreign phone numbers have 10 digits like US numbers do?

No! The number of digits varies by country, and may vary within a country. International standards restrict the total phone number length including country code to 15 digits maximum (which would be 11 digits for the US and Canada including our country code +1), but what happens after the country code is up to that country. 10-digit and 9-digit phone numbers within a country are common. Smaller countries may have fewer digits: Iceland has 7-digit numbers. China uses 10 digits for landlines but 11 digits for mobile phones; it is effectively in a slow migration to 11 digits. Germany until a few years ago had variable length numbers from 7 to 12 digits, the subscriber (local) part being as short as 4 digits for old numbers and longer for new numbers, but since 2010 uses 10 or 11 digits total. Most countries use 2-digit area codes (with 7 or 8-digit local subscriber numbers), but that varies too, with some using 3 or 4-digit area codes. The UK uses a variable length area code: Even though UK phone numbers are 10 digits almost everywhere (9 digits for certain old numbers), the city code portion can be from 2 to 6 digits, so that large cities have a 2-digit city code and 8-digit local portion, while smaller towns have longer city codes and shorter local numbers.