83% found this document useful (6 votes)
6K views

Sample Paper 1-Class 9-AI

This document contains a sample paper for an Artificial Intelligence class. It includes 5 sections with multiple choice and short answer questions about AI topics. Section 1 has 4 multiple choice questions about definitions of sentences, sounds in English, the 4Ws problem canvas, and body posture. Section 2 requires short answers to factors affecting communication perspectives, social media safety, visual communication signs, self-confidence factors, and cyber addiction causes. Section 3 consists of 20 multiple choice questions testing knowledge of popular AI programming languages, applications, problem scoping, intelligences, Python keywords, lists, and flowchart symbols. Section 4 asks for short answers on how AI benefits humans, computer vision examples, an algorithm for checking

Uploaded by

Blizzard
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
83% found this document useful (6 votes)
6K views

Sample Paper 1-Class 9-AI

This document contains a sample paper for an Artificial Intelligence class. It includes 5 sections with multiple choice and short answer questions about AI topics. Section 1 has 4 multiple choice questions about definitions of sentences, sounds in English, the 4Ws problem canvas, and body posture. Section 2 requires short answers to factors affecting communication perspectives, social media safety, visual communication signs, self-confidence factors, and cyber addiction causes. Section 3 consists of 20 multiple choice questions testing knowledge of popular AI programming languages, applications, problem scoping, intelligences, Python keywords, lists, and flowchart symbols. Section 4 asks for short answers on how AI benefits humans, computer vision examples, an algorithm for checking

Uploaded by

Blizzard
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

AI(417)

Sample PaperTERM-1 / Class -9/ Subject- Artificial Intelligence / 2020-21


MM : 50

Q1. Attempt any 4 questions out of 6. Choose the most appropriate option for the 1x4=4
following:
a What is a sentence?
(a) A group of ideas that form a complete paragraph
(b) A group of words that communicate a complete thought
(c) A set of rules that we must follow to write correctly
(d) A set of words that contains all the basic punctuation marks
b What are the different types of sounds used in English pronunciation?
(a) Vowel sounds (b) Diphthong sounds (c) Consonant sounds (d) All of the above
c Which of the following is not a part of the 4Ws Problem Canvas?
(a) Who? (b) Why? (c) What? (d) Which?
d What does an upright (straight) body posture convey/ show?
(a) Shyness (b) Fear (c) Confidence (d) Intelligence
e A postal code is ______________.
(a) a group of numbers or letters used to identify a government building.
(b) a code used to indicate the door number of a house.
(c) a group of numbers or letters used by the post office to identify a region.
(d) a code used to identify different post offices.
f Choose the correct example of oral communication.
(a) Reports (b) Newspapers (c) Face-to-face conversation (d) Notes
Q2. Attempt any 3 questions out of 5. Write answers in brief for the following: 2x3=6
a Write down any two factors affecting perspectives in communication.
b How to stay safe on Social networking Websites?
c Give examples of any four common signs used for visual communication.
d What are the factors that affect self-confidence?
e List some of the factors responsible for cyber addiction.
Q3. Attempt any 20 questions out of 24. Choose the most appropriate option for 1x20=20
the following:
1 This language is easy to learn and is one of the most popular language for AI today:
(a) C++ ( b )Python (c)Ruby (d)Java
2 Which of the following is not an application of NLP?
a) Spam filtering b) Voice to text translator c) Alexa d) Writing Suggestions
3 Which one of the following is an application of AI?
a. Remote controlled Drone b. Self-Driving Car c. Self-Service Kiosk d. Self-Watering Plant
System
4 Which of the following comes under Problem Scoping?
(a) System Mapping (b) 4Ws Canvas (c)Data Features (d) Web scraping
5 ________________ intelligence is the ability to communicate with others by
understanding other people's feelings & influence of the person.
(a) Naturalist (b) Existential (c)Interpersonal (d) Intrapersonal
6 ________________is defined as the ability to perceive the visual world and the
relationship of one object to another.
a) Spatial Visual Intelligence (b) Existential (c)Interpersonal (d) Intrapersonal
7 Language processing skills both in terms of understanding or implementation in
writing or verbally is ________ Intelligence.
1
AI(417)

a) Spatial Visual Intelligence (b) Existential (c)Interpersonal (d) Linguistic Intelligence


8 ____________ Intelligence describes how high the level of self-awareness
someone has is.Starting from realizing weakness, strength, to his own feelings.
a) Spatial Visual Intelligence (b) Intrapersonal Intelligence (c)Interpersonal (d) Linguistic
Intelligence
9 Which of the following is not a Keyword of Python?
a) finally b) continue c) elseif d) class
10 Python is a case-_______ language.
a) insensitive b) sensitive c) none of these
11 In _________ type conversion, Python automatically converts one data type to
another data type and this process doesn't need any user involvement.
a) Explicit b) Implicit c) none of these
12 In Python, we use _______ symbol to write a single line comment.
a) * b) # c) & d) @
13 What will be the output for the following expression in Python?
12*3%5+2*6//4
a) 3 b) 4 c) 4.5 d) 7
14 Ability that is related to how a person uses his limbs in a skilled manner comes
under _____ Intelligence.
a) Spatial Visual Intelligence (b) Existential (c) Kineasthetic (d) Linguistic Intelligence
15 Identify errors in the given Python statement, if any, and select the correct statement.
L1=['a', 'b','c' [1,2,3,A])
a) ) Ll=['a', 'b','c', [1,2,3,'A']] b) ) Ll=['a', 'b','c' [1,2,3,'A']]
c) ) Ll=['a', 'b','c', [1,2,3,'A]] d) ) Ll=['a', 'b','c', [1,2,3,A]]
16 Write the most appropriate list method to get the position of an item in the list.
a) append() b)insert() c)extend() d)index()
17 Write the most appropriate list method to add single element at the end of the
list.
a) append() b)pop() c)index() d)none of these
18 Write the output of the following codes in Python:

strl='book'
print (list(str1))

a) ['b', 'o', 'o', 'k'] b) [book] c) [‘book’] d) Error


19 Write the output of the following codes in Python:

L1 = [10, 20, 30, 40]


L1.clear ()
print(L1)

a)[] b){} c) () d)Error

20 Identify errors in the given Python statement, if any, and select the correct
statement.

2
AI(417)

L1=[Aman, Lakshay, Aushim, Nishant]

a) L1=[‘Aman,’ Lakshay, ‘Aushim, ‘Nishant]


b) L1=['Aman','Lakshay', 'Aushim', 'Nishant']
c) L1=['Aman','Lakshay', 'Aushim', 'Nishant]
d ) Error
21 Which of the following is symbol used for input/read numbers/text in a flowchart?
a)

b)

c)

d)

22 Which of the following is symbol used for start/stop in a flowchart?


a)

b)

c)

d)

23 Which of the following is symbol used for decision making in a flowchart?


a)

b)

c)

d)

24 Complete the following Python code to input age of a person and check if a person
can vote or not.

#A program to check if a person can vote


age = int(input("Enter Your Age"))

3
AI(417)

if age >= 18:


print("You are eligible to vote")
_____
print("You are not eligible to vote")

a)else b)else: c)elif d)elif:


Q4. Attempt any 4 questions out of 6. Write answers in brief. 2x4=8
a How can artificial intelligence benefit humans?
b Give two examples of computer vision domain of AI.
c Write algorithm and draw a flowchart to to check whether the input number is
odd or not.
d What concerns do you have about artificial intelligence?
e Python gains a maximum popularity? Why? Write the reasons (any four)
f Compare lists with tuple.
Q5. Attempt any 3 questions out of 5. Write answers in detail. 4x3=12
a Define Artificial Intelligence (AI), Machine Learning (ML), Deep Learning (DL). How
are they linked to one another?
b Explain Data Science using an example.
c Smartphones in today’s era provide us with a lot of facilities and features which
have made our lives easier. Justify this statement by giving some examples.
d What do you know about AI bias ? Explain.
e Explain Computer Vision using an example.

You might also like