answersLogoWhite

0

What else can I help you with?

Continue Learning about Math & Arithmetic

Explain all the criteria that an algorithm must satisfy.?

algorithm is all about sex


What is a real number that can be written as a fraction denominator does not equal 0 a repeating or terminating decimal or an integer?

Any number that can be written as a fraction (with a non-zero denominator) is a rational number; in decimal format it will either terminate (possibly with no digits after the decimal point, ie an integer) or end in a repeating sequence of digits. Any number which cannot be written as a fraction (one integer over another) is an irrational number. If I understand your question correctly: A number written as a fraction with a denominator which does not equal zero can be any of a terminating decimal, a recurring decimal or an integer - they are all possible.


Find three consecutive odd numbers and the sum of whose squares consists of four identical digits?

Well, 47 49 51 53 are four consecutive odd numbers those total squared has for identical digits. 40000.... The square root of any number that is only four digits long all containing the same digit has a value that is not an integer.


What is the significant digits for 26701?

All five digits in the number are significant.


What range of unsigned integer numbers can be represented by 8 bits?

An 8-bit unsigned integer can represent values ranging from 0 to 255. This is because, with 8 bits, there are (2^8 = 256) possible combinations of binary digits. Therefore, the smallest value is 0 (all bits are 0) and the largest value is 255 (all bits are 1).

Related Questions

Design an algorithm for finding all the factors of positive integerfor example in the case of the integer 12your algorithm should report 12346 and 12?

design an algorithm for finding all the factors of a positive integer


Name the only digit that is NOT an integer?

All digits all part of the set of integers.


How is an integer expressed in hexadecimal form?

It is expressed as a string of hexadecimal digits - all to the left of a "decimal" point.


Is it true that any even integer can be represented as a sum of two integers with all odd digits?

Yes. Yes. Yes. Yes.


What program can read n number must contain four- digits only and if the second left digit odd put it in an array if not ignore it?

Input the number as a string. If the string has a length of 4 and contains only digits, convert the string to an integer. If the integer is less than 1000, input another number. Otherwise, copy the integer and divide by 100 to get rid of the two least-significant digits. Divide again by 2 and take the remainder. If the remainder is 1 then the second left digit of the 4-digit integer is odd and the 4-digit integer can be added to the array, otherwise do not add it. Repeat for all n numbers.


Explain all the criteria that an algorithm must satisfy.?

algorithm is all about sex


What is the divisibility test for 15?

It is divisibility by 3 and divisibility by 5.Divisibility by 3: the digital root of an integer is obtained by adding together all the digits in the integer, with the process repeated if required. If the final result is 3, 6 or 9, then the integer is divisible by 3.Divisibility by 5: the integer ends in 0 or 5.


It is the smallest three-digit number with all the digits different?

My intuition suggests you are after a positive integer, so the answer is 102. However I suppose technically 0.12 also meets the criteria given (though it is not an integer). And if you can include negative integers then -987 would be the answer.


In java How do you have a method take in an int value and return an int containing sum of the individual digits in the number using a recursive method?

Add the last digit plus the sum of all the previous digits. The base case is that if your integer only has a single digit, just return the value of this digit. You can extract the last digit by taking the remainder of a division by 10 (number % 10), and the remaining digits by doing an integer division by 10.


Is an integer a terminating decimal?

Yes, integers are ...-3,-2,-1,0,1,2,3... all of which have an end and therefore terminate.Yes!Decimal numbers that have finite number of digits after decimal point are called terminating decimal numbers.For example,1.2, 2.3376, 4.79 are a few examples of terminating decimals.Every integer could be written as a decimal number.Like as follows:1 could be written as 1.02 could be written as 2.0-3 could be written as –3.0.We have not changed the value of the numbers but we have converted them in to decimal numbers.Source: www.icoachmath.com


Is 117 divisible by 9?

Yes. 117/9=13. An easy test for divisibility by nine (for an integer of any length) is to add all of the digits. If the sum is nine or a number divisible by nine, then the integer is divisible by nine. In this case, 1+1+7=9, so 117 is divisible by nine. (Be careful, this test fo divisibility only works generally for divisibility by three -- i.e., an integer is divisible by three if and only if the sum of its digits equals three or a multiiple of three-- and for nine.) To find if an integer is divisible by 4, you can check if the last two digits are. If they are, it is. To check if an integer is divisible by 6, you must make sure that the integer is divisible by both 3 and 2. If you want to check if an integer is divisible by 2, just make sure it's even. Any integer divisible by 10 will end in zero. Any integer divisible by 5 will end in either 5 or 0. This is an important part of pre-algebra, as well as algebra.


How do you wrte a program to reverse a digit?

class reverse { public static void main(String args[]) { int a=0; int b=Integer.parseInt(args[0]); while(b!=0) { int n=b%10; a++; System.out.println(n); b=b/10; } System.out.println("\n digits are..." + a); } } by this prog u can reverse the nos. as well as it also helps u to count all digits. from ruchika jaiswal