Worksheet Term - 1
Worksheet Term - 1
Worksheet Term - 1
Term -1
1. What does "self-management" primarily involve?
4. How can demonstrating self-management skills positively impact your daily life?
• A) Procrastinating on assignments
• B) Planning your day with a to-do list and setting priorities
• C) Ignoring deadlines
• D) Relying solely on others to remind you of your tasks
Correct Answer: B) Planning your day with a to-do list and setting priorities
• A) Avoiding self-reflection
• B) Practicing positive self-talk and affirmations
• C) Focusing only on your failures
• D) Ignoring your strengths and achievements
7. Which self-management strategy can help you stay on track with your goals?
Correct Answer: B) Regularly reviewing and adjusting your plans based on progress
• A) Self-discipline helps you follow through on your plans and resist distractions.
• B) Self-discipline is irrelevant to self-management.
• C) Self-discipline only applies to academic settings.
• D) Self-discipline makes self-management more complicated.
Correct Answer: A) Self-discipline helps you follow through on your plans and resist
distractions.
Correct Answer: C) Gradually practice the skill and celebrate small successes
Correct Answer: B) To provide a clear roadmap and measure your progress effectively
• A) Problem Scoping
• B) Data Visualization
• C) Random Task Execution
• D) Data Acquisition
Correct Answer: B) To clearly define the problem and objectives of the project
15. In which step of the AI project cycle do you determine what data is needed and
how to obtain it?
• A) Data Visualization
• B) Problem Scoping
• C) Data Acquisition
• D) System Mapping
Correct Answer: C) Data Acquisition
18. Which step involves determining the resources and tools required for an AI
project?
• A) Data Visualization
• B) Problem Scoping
• C) Data Acquisition
• D) Project Planning
• A) Data Visualization
• B) System Mapping
• C) Problem Scoping
• D) Data Acquisition
Correct Answer: B) To gather relevant and high-quality data for the project
Correct Answer: B) Creating a detailed diagram of system components and their interactions
21. During which phase would you create visual representations of data patterns and
trends?
• A) Problem Scoping
• B) Data Acquisition
• C) Data Visualization
• D) System Mapping
22. What should be done if the acquired data does not meet the project’s
requirements?
Correct Answer: C) Revisit the data acquisition process to obtain the necessary data
23. In which step do you refine the project objectives and outline the problem
constraints?
• A) Data Visualization
• B) System Mapping
• C) Problem Scoping
• D) Data Acquisition
Correct Answer: B) To visualize the relationships between different components of the system
Correct Answer: B) It simplifies the process of identifying patterns and trends in the data.
28. Which step involves defining the types of data needed and methods for collecting
it?
• A) Data Visualization
• B) Problem Scoping
• C) System Mapping
• D) Data Acquisition
29. What is the main purpose of problem scoping in the AI project cycle?
• A) To acquire data
• B) To visualize data
• C) To outline the problem, constraints, and objectives clearly
• D) To execute the final solution
30. What is the key benefit of defining the scope of a problem in an AI project?
• A) Finiteness
• B) Clarity
• C) Ambiguity
• D) Effectiveness
Correct Answer: B) A diagram that shows the sequence of steps in a process or algorithm
36. Which symbol is typically used in flowcharts to represent the start or end of a
process?
• A) Rectangle
• B) Diamond
• C) Oval
• D) Parallelogram
Correct Answer: C) Oval
Correct Answer: C) An informal way of describing an algorithm using simple language and
constructs
• A) A loop
• B) An assignment statement
• C) An IF-THEN-ELSE structure
• D) A sequence of operations
Correct Answer: C) It helps programmers plan and understand algorithms before coding
• A) for loop
• B) while loop
• C) if-else statement
• D) break statement
python
Copy code
x = 5
if x > 10:
print("Greater")
else:
print("Smaller or Equal")
• A) Greater
• B) Smaller or Equal
• C) Error
• D) No Output
python
Copy code
for i in range(3):
if i == 1:
print("One")
else:
print("Not One")
• A) One Not One Not One
• B) Not One One Not One
• C) Not One One One
• D) One One One
python
Copy code
i = 0
while i < 3:
print(i)
i += 1
• A) 0 1 2
• B) 1 2 3
• C) 0 1 2 3
• D) 1 2
Correct Answer: A) 0 1 2
python
Copy code
for i in range(3):
for j in range(2):
print(i, j)
• A) 0 0 0 1 1 0 1 1 1 0 1 1
• B) 0 0 0 1 1 0 1 1
• C) 0 0 0 1 1 1 2 0 2 1
• D) 0 0 1 1 2 2
Correct Answer: B) 0 0 0 1 1 0 1 1
• A) It skips the current iteration and continues with the next one.
• B) It exits the loop completely and transfers control to the statement immediately
following the loop.
• C) It terminates the program execution.
• D) It pauses the execution of the loop.
Correct Answer: B) It exits the loop completely and transfers control to the statement
immediately following the loop.
Correct Answer: B) The ability to learn from experience, adapt to new situations, and solve
problems
Correct Answer: C) AI systems can struggle with tasks requiring deep understanding or
common sense
Correct Answer: B) AI can process and analyze large volumes of data quickly and accurately
Correct Answer: B) The development of the first AI program by Alan Turing and others
Correct Answer: B) To address concerns about privacy, fairness, and the impact on society
Correct Answer: B) Implementing AI systems that can discriminate against certain groups of
people
Correct Answer: B) Humans are needed to provide creativity, empathy, and ethical judgment
that AI lacks
60. How does AI contribute to improving daily life in the field of healthcare?
Correct Answer: C) By assisting with diagnostic tools, personalized treatment plans, and
managing patient data
Algorithm
• 1Step : Start.
• 2 Input : Two numbers num1 and num2.
• 3Step : Declare sum to 0 (This is optional step, during step5 we can add declaration
and assign directly
• as well)
• 4Step : Input number num1.
• 5Step : input number num2.
• 6Step : Add num1 and num2 and assign result to variable sum.
• 7Step : Print sum.
• 8Step : Stop.
Algorithm:
Algorithm:
Algorithm: