Qus : Which of the following functions is a built-in function in python?
Qusनिम्नलिखित में से कौन सा फ़ंक्शन पायथन में एक अंतर्निहित फ़ंक्शन है?
A. seed() B. sqrt()
C. factorial() D. print()
Solution
D. print()
Explanation
The function seed is a function which is present in the random module. The functions sqrt and factorial are a part of the math module. The print function is a built-in function which prints a value directly to the system output.