Report Bug
Qus : What will return by math.trunc() function in python
Qusपायथन में Math.trunc() फ़ंक्शन द्वारा क्या लौटाया जाएगा

A. The truncated decimal part of a number
B. The rounded integer value of a number.
C. The truncated integer value of a number.
D. The floor (largest integer less than or equal to the number).


Solution
C. The truncated integer value of a number.






Report Bug