A. rem = 3.14 % 2.1;
B. rem = modf(3.14, 2.1);
C. rem = fmod(3.14, 2.1);
D. Remainder cannot be obtain in floating point division.
A. Internal and External
B. External, Internal and None
C. External and None
D. Internal
A. * (asterisk)
B. | (pipeline)
C. - (hyphen)
D. _ (underscore)
A. ceil(1.66)
B. floor(1.66)
C. roundup(1.66)
D. roundto(1.66)