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().
Related Questions on Introduction to Python
What is Python primarily used for?
A. Web browsing
B. Data analysis
C. Video editing
D. Game development
Who developed Python Programming Language?
A. Wick van Rossum
B. Rasmus Lerdorf
C. Guido van Rossum
D. Niene Stom
Which of the following is an advantage of Python?
A. It compiles to machine code
B. It enforces strict typing
C. It has a large standard library
D. It requires extensive memory management
What is the role of the Python interpreter?
A. To convert Python code to assembly language
B. To manage memory allocation
C. To execute Python code line by line
D. To compile Python code into bytecode

Join The Discussion