Warning: implode(): Invalid arguments passed in /www/wwwroot/jobquiz.info/mdiscuss.php on line 336
Which of the following statements should be used to obtain a remainder after dividing 3.14 by 2.1 ? ?->(Show Answer!)
Question Set

1. Which of the following statements should be used to obtain a remainder after dividing 3.14 by 2.1 ?





Ask Your Doubts Here

Type in
(Press Ctrl+g to toggle between English and the chosen language)

Comments

  • By: guest on 01 Jun 2017 06.01 pm
    fmod(x,y) - Calculates x modulo y, the remainder of x/y.
    This function is the same as the modulus operator. But fmod() performs floating point divisions. Example: #include <stdio.h> #include <math.h> int main () { printf ("fmod of 3.14/2.1 is %lf\n", fmod (3.14,2.1) ); return 0; } Output:
    fmod of 3.14/2.1 is 1.040000
Show Similar Question And Answers
QA->Two statements are given followed by two conclusions I and II. You have to consider the two statements to be true even if they seem to be at variance from commonly known facts. You have to decide which one of the given conclusions is definitely drawn from the given statements. Statement : All virtuous persons are happy. No unhappy person is virtuous. Conclusions : I. Happiness is related to virtue II. Unhappy person is not virtuous.....
QA->Find the largest number which on dividing 43, 91 and 183 leaves 3 as remainder each time.....
QA->What is the least number which when divided by 5, 6, 7 and 8 leaves a remainder 3, but when divided by 9 leaves no remainder?....
QA->A boy divided the numbers 7654, 8506 and 9997 by a certain largest number and he gets same remainder in each case. What is the common remainder?....
QA->What a number is divided by 35 a remainder 10 is obtained and when it is divided by 45, the same remainder is obtained. Find the number?....
MCQ->Which of the following statements should be used to obtain a remainder after dividing 3.14 by 2.1 ?....
MCQ->On dividing a number by 56, we get 29 as remainder. On dividing the same number by 8, what will be the remainder ?....
MCQ->On dividing a number by 357, we get 39 as remainder. On dividing the same number 17, what will be the remainder ?....
MCQ->On dividing a number by 68, we get 269 as quotient and 0 as remainder. On dividing the same number by 67, what will the remainder ?....
MCQ->On dividing a number by 5, we get 3 as remainder. What will the remainder when the square of the this number is divided by 5 ?....
Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use | Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions
Question ANSWER With Solution