Which of the following functions is a built-in function in python?
A. factorial()
B. print()
C. seed()
D. sqrt()
Answer: Option B
Solution (By Examveda Team)
In Python, the print() function is a built-in function.Built-in functions are functions that are available as part of the Python language and do not require any imports or external dependencies to use. They are pre-defined and readily accessible for common tasks such as input/output operations, mathematical calculations, type conversions, and more. The print() function, in particular, is widely used to display output to the console or other output streams. It takes one or more arguments and prints them to the standard output, separated by spaces by default. Therefore, the correct option for the built-in function in Python is print().
Join The Discussion