AI paper solution 2023-24
AI paper solution 2023-24
2023-24
Section A
A B
1. Problem Scoping a. Implement a suitable model that
matches the requirements
2. Data acquisition b. Interpret some useful information
out of data
3. Data exploration c. Collect data from reliable sources
4. Modelling d. Finalise the aim of the AI project
8. Digital assistants are the example of ____NLP___ domain of AI.
9. Which of the following sign is put at the beginning of single line comment?
a. $
b. *
c. @
d. #
10. The player of this game have to guess what the opponents will choose and make an
appropriate shape to defeat them. Identify the game with respect to their domain.
a. Rock, Paper , Scissor -> Computer Vision
b. Rock, Paper , Scissor -> Data Collection
c. Emoji scavenger -> Computer Vision
d. Emoji scavenger -> Data Collection
11. Grooming is a term associated with
a. Time management
b. Problem solving
c. Neat and clean appearance
d. Understanding self
12. Which of the following activities has lead to environmental imbalance?
a. Deforestation
b. Soil erosion
c. Industrial Pollution
d. All of the above
13. Which of the following is not a correct variable name?
a. 2_sum
b. sum_2
c. _sum
d. _sum2
14. Bias in AI can be reduced with more training data.
a. True b. False
15. Which of the following is/are the element of green economy.
a. Energy efficiency
b. Employment creation
c. Sustainable use of natural resources
d. All of the above
16. The 4W’s of the 4W problem canvas are :
a. Who, What, Where and Why
b. Who, What, When and Why
c. Who, What, Where and When
d. Who, Where, When and Why
17. When you search for ‘Doctor’ on internet, the results for Doctor images might mostly come up
as ‘male’. Whereas for ‘Nurse’ most results would be ‘female’. What does this describes?
a. Data privacy
b. Gender bias
c. Poor training
d. Lack of access
18. _____________ refers to the type of data you have to collect in data acquisition stage of AI
project cycle.
a. Data type
b. Data feature
c. Labelled data
d. Testing data
19. Which one is the example of NLP?
a. Mixed Reality
b. Fake id in photos
c. Siri
d. Photos tagged in social media
20. Regression is a type of rule based AI model.
a. True
b. False
21. The AI bias usually reflect______________
a. Societal
b. Culture
c. Gender
d. All of these
22. Riya, a computer teacher has developed an educational humanoid namely “ROBO”, which can
converse in 50 languages. Out of these, which AI technology helps ROBO, the robot to
converse with humans?
a. NLP
b. Computer vision
c. Data science
d. Python
23. Who developed Python?
a. James Gosling
b. Dennis Ritchie
c. Guido Van Rossum
d. John McCarthy
24. Which of the following is not a self management skill?
a. Problem solving
b. Understanding self
c. Bargaining
d. Confidence building
Section B (2 marks each)
Do any 7 out of 8
Definition: Data exploration is the process of analyzing and understanding the collected
data to gain insights and identify patterns.
Purpose: The goal is to familiarize yourself with the data, detect issues (e.g., missing
values, outliers), and determine its suitability for the AI project.
8. Draw AI project cycle.
a.
Section C (3 marks each)
1. Write a python program to calculate the simple interest where the required details are
given by the user. [ Formula : Simple Interest = (Principal*Rate*Time)/100]
Write a python program to calculate the perimeter of rectangle whose dimensions are
given by the user. . [ Formula :Perimeter = 2*(Length+Breadth)]
length = float(input("Enter the length: "))
breadth = float(input("Enter the breadth: "))
perimeter = (2*(length+breadth))
print("perimeter =" , perimeter)
Or
Write a python program to display the replication of any string by n times. The value of
string and n is given by the user.
4. There is a relationship between a neural network and the human nervous system. Justify
the statement.
a. The Relationship between a neural network and the human nervous system is a follows :
1. Structural Similarity
The human nervous system consists of billions of neurons that are interconnected to
process information.
In an artificial neural network (ANN), neurons receive input data, process it using
mathematical functions, and generate an output.
3. Learning and Adaptation
The human brain learns through experience by strengthening neural connections
(synaptic plasticity).
ANNs learn through training using algorithms like backpropagation, which adjusts the
connections (weights) based on errors.
4. Parallel Processing
The human brain processes multiple signals simultaneously (vision, hearing,
movement, etc.).
Neural networks can perform parallel processing, handling large amounts of data
efficiently.
5. Decision-Making
The nervous system makes decisions based on past experiences and real-time inputs.
ANNs make decisions based on previously trained data and new inputs.
OR
Draw Problem statement Template. Also, explain 4W’s used under Problem Scoping of AI
Project Cycle.
The 4W’s (What, Who, Where, Why) are a framework used during the Problem Scoping phase
of the AI Project Cycle. They help define the problem clearly and ensure that the project is
aligned with the needs of stakeholders. Here’s an explanation of each:
1. What: Describes the problem or challenge that the AI project aims to address.
2. Who: Identifies the stakeholders or groups affected by the problem.
3. Where: Specifies the context or environment where the problem occurs.
4. Why: Explains the importance of solving the problem and its potential impact.