Ai Answer Key 7 Sample Paper-1
Ai Answer Key 7 Sample Paper-1
)
Term-2 Sample Paper -1 Class-7 Subject: AI
Answer Key
Section A: Multiple Choice Questions (MCQs) [5 Marks]
1. b. Sender
2. c. Programming language
3. d. Indented
4. a. floats
5. d. .py
6. c. Argument
7. b. else
8. a. Library
9. a. print()
10. a. Same
3. Communication
4. penup()
5. Canvas
o Interactive Mode allows executing Python commands one at a time and displays the output
immediately. It is useful for quick testing.
o Script Mode is used for writing complete Python programs in a file (.py) and executing them
later. It is useful for developing larger programs.
A function argument is a value that is passed to a function when it is called. Arguments allow functions
to receive input data and process it.
Example:
6.
Output Analysis
The script iterates over the nums list.
It checks if the current number is even (num % 2 == 0).
If even, it prints "Yes"; otherwise, it prints "No".
Step-by-Step Execution
Final Output
No
No
Yes
Yes
No
Yes
No
Yes
No
OR
Explanation
OUTPUT: