42b
1
10 \ 2
A quotient is the number obtained when one number is divide by another. 11 decreased by 10 is 1. The only number that can be paired with -9 to obtain a quotient of 1 is -9.
int dividend,divisor,remainder; int division(int p,int q){ int quotient=1; /*if divisor and diviend are equal then quotient=1*/ if(p==q){ remainder=0; return 1; } /*if dividend is smaller than divisor then remainder=dividend*/ if(p<q){ remainder=p; return 0; } /*shift left till divisor > dividend*/ while(p>=q){ q<<=1; quotient<<=1; } /*shift right for one time so that divisor become smaller than dividend*/ q>>=1; quotient>>=1; /*again call division recurcively*/ quotient+=division(p-q,divisor); return quotient; } int main(){ cout<<"\nEnter dividend:"; cin>>dividend; cout<<"\nEnter divisor:"; cin>>divisor; cout<<"\nQuotient:"<<division(dividend,divisor); cout<<"\nRemainder:"<<remainder; //system("pause"); return 0; }
42b
how to write this in algebraic expression 1 more than the quotient of n and 2
1
1 + 5/n
3. The quotient of two numbers is the result of division. In this case, 21 is the dividend, or the number being divided, and 7 is divider, or the number doing the dividing.
21/7 so you will divide 7 into 21; 7/21= 3 the quotient is 3, the remainder is 0, the divisor is 7; answer is ...3 0/7 If the question was write 8/5 as a mixed number you would divide 5 into 8. 5 is the divisor, 1 is the quotient, 3 is the remainder. The answer to that is 1 3/5. Remainder Quotient Divisor 1 3/5.
Yes, it can be , for example 9/5 gives you quotient=1 and remainder =4 and other case 16/5 gives you quotient =3 and remainder = 1
47
The quotient is the result of dividing two numbers. So 3 doesn't have a quotient unless another number is being involved in the division. The 4 is not that number since it is substracted from the quotient you get afterwards. Examples: 4 less than the quotient of 9 and 3 would be -1 (9/3=3; 3-4=-1) 4 less than the quotient of 6 and 3 would be -2 (6/3=2; 2-4 = -2)
The quotient is always greater than the whole number. Why? Because it takes more to add up a smaller number than a bigger number. I hope this makes sense.. I'm really stupid XD
greater
The answer depends on the sign of the numbers.(1/4) / 2 = 1/8, which is smaller.(-1/4) / 2 = -1/8, which is greater.