Python Tyro

CBSE Board Exam Students — Don’t Miss This Before Exam!
Watch all the videos completely before your Board Exam to get clear understanding and score good marks.

👍 If the videos help you, please support the channel by sharing with your friends and classmates.

💬 Join our Online Doubt Clarification Session to clear all your doubts and improve confidence before exams.

🎯 Learn Smart • Practice Daily • Score High Marks

Thank you for your support ❤️

12 hours ago | [YT] | 2

Python Tyro

‪@pythontyro4579‬ Subscribe and Share Now

Class 12 CS / IP CBSE Board Revision
Assertion (A): - In Python, statement return [expression] exits a function.

Reasoning (R): - Return statement passes back an expression to the caller.
A return statement with no arguments is the same as return None.

2 weeks ago | [YT] | 1

Python Tyro

‪@pythontyro4579‬ Subscribe and Share Now
Class 12 CS / IP CBSE Board Revision
Assertion (A): Built-in function is predefined in the language that are used directly.
Reason (R): print ( ) and input ( ) are built-in functions

2 weeks ago | [YT] | 0

Python Tyro

‪@pythontyro4579‬ Subscribe and Share Now
Class 12 CS / IP CBSE Board Revision

Assertion (A): Global variable is declared outside the all the functions.
Reasoning (R): It is accessible through out all the functions

2 weeks ago | [YT] | 0

Python Tyro

‪@pythontyro4579‬ Subscribe and Share Now
Class 12 CS / IP CBSE Board Revision
Assertion(A): The random module is a built-in module to generate the pseudo-random values.
Reason(R): The randrange( ) function is used to generate a random number between the specified range in its parameter.

2 weeks ago | [YT] | 0

Python Tyro

‪@pythontyro4579‬ Subscribe and Share Now
Class 12 CS / IP CBSE Board Revision

Assertion(A): If the arguments in a function call match the number and order of arguments as defined in the function definition, such arguments are called the positional arguments.

Reasoning(R): During a function call, the argument list first contains default arguments followed by positional arguments.

2 weeks ago | [YT] | 0

Python Tyro

‪@pythontyro4579‬ Subscribe and Share Now
Class 12 CS / IP CBSE Board Revision
Which of the following function definitions is INVALID?

2 weeks ago | [YT] | 1

Python Tyro

‪@pythontyro4579‬ Subscribe and Share Now
Class 12 CS / IP CBSE Board Revision

What is wrong with the following function definition?
def greet (name="Guest", age):
print (name, “is”, age, “years old”))

2 weeks ago | [YT] | 1

Python Tyro

‪@pythontyro4579‬ Subscribe and Share Now
Class 12 CS / IP CBSE Board Revision
What is wrong with the following function definition?
def greet (name="Guest", age):
print (name, “is”, age, “years old”))

2 weeks ago | [YT] | 0

Python Tyro

‪@pythontyro4579‬ Subscribe and Share Now
Class 12 CS / IP CBSE Board Revision
Write the output of the following:
a= (10, 12, 13, 12, 13, 14, 15)
print(max(a) + min(a) + a.count(2))

2 weeks ago | [YT] | 2