Quantcast
Channel: Learn CBSE
Viewing all 11048 articles
Browse latest View live

Lists in Python Class 9 AI Questions and Answers

$
0
0

These Class 10 AI Important Questions Chapter 9 Lists in Python Class 9 AI Important Questions and Answers NCERT Solutions Pdf help in building a strong foundation in artificial intelligence.

Lists in Python Class 9 Important Questions

Class 9 AI Lists in Python Questions

Important Questions of Lists in Python Class 9 – Class 9 Lists in Python Important Questions

Lists in Python Class 9 AI Very Short Answer Type Questions

Question 1.
What do you mean by list in Python?
Answer:
List is a type of container in data structures which is used to store multiple data at the same time.

Question 2.
Are lists mutable or immutable?
Answer:
Lists are mutable which means they can be changed after creation.

Lists in Python Class 9 AI Questions and Answers

Question 3.
Which value is used to represent the first index of list?
Answer:
Zero (0) is used to represent the first index of list.

Question 4.
Write the syntax to create the list from an existing sequence.
Answer:
Lists in Python Class 9 AI Questions and Answers 1

Question 5.
Write the output of below code.
Lists in Python Class 9 AI Questions and Answers 2
Answer:
[ ]

Question 6.
What is traversing a list ?
Answer:
Traversing a list is a technique to access an individual element of that list.

Question 7.
Find the output.
Lists in Python Class 9 AI Questions and Answers 3
Answer:
True

Question 8.
Give the syntax for slicing a list’s elements which are not consecutive.
Answer:
Lists in Python Class 9 AI Questions and Answers 4

Question 9.
What do you mean by insert () method?
Answer:
insert () method is used to insert an element at specified position in the list.

Question 10.
How to count the element of a list?
Answer:
Lists in Python Class 9 AI Questions and Answers 5

Question 11.
Which formula is used to sort the list in descending order.
Answer:
list_name. sort (reverse = True)

Lists in Python Class 9 AI Questions and Answers

Question 12.
What is the use of list () method?
Answer:
list () method takes sequence types and converts them to lists. This is used to convert a given tuple into list.

Lists in Python Class 9 AI Short Answer Type Questions

Question 1.
What is nested list? Explain with an example.
Answer:
Nested lists are list objects where the elements in the lists can be lists themselves.
For example,
Lists in Python Class 9 AI Questions and Answers 6

list l contains 7 elements while inner list contains 3 elements. list 1 is considered [ 75,34, ‘ A ‘] as one element.

Question 2.
Observe the given list and find the answer of questions that follows.
Lists in Python Class 9 AI Questions and Answers 7
(i) list1 [-2]
(ii) list1 [2]
Answer:
(i) 33
(ii) 87

Question 3.
Distinguish between string and list.
Answer:
Strings are immutable which means the values provided to them will not change in the program. While lists are mutable which means the values of list can be changed at any point of time in program.

Question 4.
What is the output of below questions?
12 = [75, 43, 40, 36, 28, 82]
(i) 12. sort ()
(ii) I2.sort (reverse = True)
Answer:
(i) [28,36,40,43,75,82]
(ii) [82,75,43,40,36,28]

Question 5.
Find the errors.
Lists in Python Class 9 AI Questions and Answers 8
Answer:
Error 1 L3 = L1 + 3 because + operator cannot add list with other type as number or string.

Error 2 L1.pop (5) parentheses puts index value instead of element. In the given list, maximum index value is 3 and 5 is out of index range.

Question 6.
Predict the output.
L2 =[4,5,3,1]
L3 =[3,4,11,2]
(i) print (L2 + L3)
(ii) print (L2. count (0))
(iii) print (L3 [4])
(iv) print (L3. remove (11))
Answer:
(i) [4,5,3,1,3,4,11,2]
(ii) 0
(iii) IndexError
(iv) [3,4,2]

Lists in Python Class 9 AI Questions and Answers

Question 7.
Find the output.
L = [3,4,53,4,0,2,4,7,29]
(i) L[2: 5]
(ii) L [: 7]
(iii) L[4:]
(iv) [::-1]
Answer:
(i) [53,4,0]
(ii) [3,4,53,4,0,2,4]
(iii) [0,2,4,7,29]
(iv) [29,7,4,2,0,4,53,4,3]

Question 8.
Find the output of the given code.
Lists in Python Class 9 AI Questions and Answers 9
Answer:
A
R
I
H
A
N
T

Question 9.
Define the replicating lists with an example.
Answer:
In Python, you can repeat the elements of the list using (*) operator. This operator is used to replicate the list.
For example,
Lists in Python Class 9 AI Questions and Answers 10

Question 10.
Consider the following list and answer the below questions:
I1 = [89, 45, “Taj”, “Qutub”, 93, 42, “Minar”, “Delhi”, “Agra”]
(i) I1 [5:]
(ii) “Qutab” not in I1
(iii) I1[-3]
(iv) I1 [9]
(v) I1[2: 5]
(vi) I1[-2: 5]
Answer:
(i) [42, ‘Minar’, ‘Delhi’, ‘Agra’]
(ii) False
(iii) ‘Minar’
(iv) It gives IndexError because there is index value 0 to 8 .
(v) [‘Taj’, ‘Qutub’, 93]
(vi) []

Question 11.
Predict the output.
Lists in Python Class 9 AI Questions and Answers 11
Answer:
Output
0
7.

Question 12.
Write the suitable method’s name for the below conditions.
(i) Adds an element in the end of list.
(ii) Returns the index of first occurrence.
(iii) Adds contents of list2 to the end of list1.
Answer:
(i) append ()
(ii) index ()
(iii) extend ()

Lists in Python Class 9 AI Long Answer Type Questions

Question 1.
Write the best suited method’s name for the following conditions.
(i) Insert an element at specified position.
(ii) Add contents from one list to other.
(iii) Calculate the total length of list.
(iv) Reverse the contents of the list object.
Answer:
(i) insert ()
(ii) extend ()
(iii) len ()
(iv) reverse ()

Lists in Python Class 9 AI Questions and Answers

Question 2.
Write a program to move all zeroes to the end of the list.
Answer:
Lists in Python Class 9 AI Questions and Answers 12
Output
List after pushing all zeroes to end of list
[4,7,9,8,2,4,9,0,0,0,0]

Question 3.
Observe the following list and answer the questions that follows.
Lists in Python Class 9 AI Questions and Answers 13
(i) I1 [3:4]=[“That”, 54]
(ii) [I1 [4]]
(iii) I1 [:7]
(iv) I1 [1:2] + I1 [3:4]
Answer:
(i) [45,65, ‘The’, ‘That’, 54, 90, 12, ‘This’, 21]
(ii) [54]
(iii) [45,65, ‘The’, ‘That’, 54, 90, 12]
(iv) [65, That’]

Question 4.
Write a python program to find the third largest number in a entered list.
Answer:
Lists in Python Class 9 AI Questions and Answers 14
Output
Enter number of elements : 5
Enter element : 76
Enter element : 45
Enter element : 98
Enter element: 90
Enter element: 23
Third largest element is : 76

Lists in Python Class 9 AI Questions and Answersc

Question 5.
Write a Python program to find the odd numbers and even numbers from entered list and display them in two different list.
Answer:
Lists in Python Class 9 AI Questions and Answers 15
Output
Enter number of elements : 6
Enter element : 23
Enter element : 87
Enter element : 26
Enter element : 45
Enter element : 32
Enter element : 12
The even list [26, 32, 12]
The odd list [23, 87, 45]

Question 6.
Write a Python program to count a positive and negative numbers in a list.
Answer:
Lists in Python Class 9 AI Questions and Answers 16

Output
Enter number of elements : 6
Enter element : 2
Enter element :-5
Enter element:-7
Enter element : 6
Enter element: 1
Enter element : 4
Positive numbers in the list : 4
Negative numbers in the list : 2

Question 7.
Suppose that L is the list
Lists in Python Class 9 AI Questions and Answers 17
Based on the above code, answer the following questions.
(i) What is the value of len (L)?
(ii) What will be the output of L [2] [1:]?
(iii) Find the output of L[1]+L[2].
(iv) What is the correct output of “few” in L[2: 3] ?
Answer:
(i) 7
(ii) [“words”]
(iii) [“are”, “a”, “few”, “words”]
(iv) False

The post Lists in Python Class 9 AI Questions and Answers appeared first on Learn CBSE.


Class 9 AI MCQs Online Test | MCQ on Artificial Intelligence with Answers Pdf Class 9

$
0
0

AI Class 9 MCQ, MCQ on Artificial Intelligence with Answers Pdf Class 9, MCQ AI Class 9, CBSE Class 9 Artificial Intelligence MCQ, Class 9 AI MCQs Online Test, MCQ on Artificial Intelligence Class 9, AI MCQ for Class 9, Artificial Intelligence (Code 417 Pdf Class 9) MCQ, MCQ on AI Class 9, Artificial Intelligence Class 9 MCQ with Answers, MCQ Questions for Class 9 AI.

Class 9 Artificial Intelligence MCQ Questions | CBSE AI Class 9 MCQ

MCQ of AI Class 9 | Class 9 Artificial Intelligence MCQ

AI MCQ for Class 9 PART A Employability Skills

  1. Communication Skills Class 9 MCQ
  2. Self Management Skills Class 9 MCQ
  3. Basic ICT Skills Class 9 MCQ (Information and Communication Technology Skills)
  4. Entrepreneurial Skills Class 9 MCQ
  5. Green Skills Class 9 MCQ

MCQ on AI Class 9 PART B Subject Specific Skills

  1. Introduction to AI Class 9 MCQ (Introduction to Artificial Intelligence)
  2. AI Project Cycle Class 9 MCQ
  3. AI Ethics Class 9 MCQ
  4. Data Literacy Class 9 MCQ
  5. Math for AI Class 9 MCQ (Statistics and Probability)
  6. Introduction to Generative AI Class 9 MCQ
  7. Introduction to Python Class 9 MCQ
  8. Python Conditional and Looping Statements Class 9 MCQ
  9. Lists in Python Class 9 MCQ

Also Read

NCERT Class 9 AI MCQ, Artificial Intelligence Class 9 MCQs Questions with Answers, MCQ of AI Class 9, Artificial Intelligence MCQ Class 9, AI MCQs Class 9, Artificial Intelligence Solved MCQs Pdf Class 9, AI Class 9th MCQ, AI MCQ Questions Class 9, MCQ Questions for Class 9 Artificial Intelligence.

The post Class 9 AI MCQs Online Test | MCQ on Artificial Intelligence with Answers Pdf Class 9 appeared first on Learn CBSE.

Communication Skills Class 9 MCQ Online Test

$
0
0

Students find these Class 9 AI MCQ Chapter 1 Communication Skills Class 9 MCQ Online Test with Answers helpful for self-assessment and preparation.

Class 9 AI Communication Skills MCQ

MCQ on Communication Skills Class 9

Class 9 Communication Skills MCQ – Communication Skills MCQ Class 9

Multiple Choice Questions

Question 1.
Communication skills are those skills which are needed to
(a) Speak properly
(b) Write properly
(c) Both (a) and (b)
(d) None of these
Answer:
(c) Both (a) and (b)

Question 2.
The word ‘Communication’ came from the
(a) French word
(b) Latin word
(c) Greek word
(d) None of these
Answer:
(b) Latin word

Question 3.
The information can be
(a) Drawings
(b) Words
(c) Gestures
(d) All of these
Answer:
(d) All of these

Communication Skills Class 9 MCQ Online Test

Question 4.
Communication involves
(a) Sender
(b) Receiver
(c) Giver
(d) Both (a) and (b)
Answer:
(d) Both (a) and (b)

Question 5.
Which of the following is the importance of communication skills?
(a) Inform
(b) Influence
(c) Express feelings
(d) All of these
Answer:
(d) All of these

Question 6.
…………. means to change the message into a form suitable for sending.
(a) Decoding
(b) Encoding
(c) Feedback
(d) Receiver
Answer:
(b) Encoding

Question 7.
Which of the following is the factor affecting perspectives in communication?
(a) Language
(b) Visual perceptions
(c) Past experience
(d) All of the above
Answer:
(d) All of the above

Question 8.
Methods of communication includes
(a) Verbal Communication
(b) Non-verbal Communication
(c) Visual Communication
(d) All of the above
Answer:
(d) All of the above

Communication Skills Class 9 MCQ Online Test

Question 9.
Face to face conversation, letters, notes, emails, books, newspapers, sms etc, are type of which method of communication?
(a) Verbal Communication
(b) Non-verbal Communication
(c) Visual Communication
(d) All of the above
Answer:
(a) Verbal Communication

Question 10.
Facial expression, posture, gesture/body language, touch, space etc are types of which method of communication?
(a) Verbal Communication
(b) Non-verbal Communication
(c) Visual Communication
(d) None of the above
Answer:
(b) Non-verbal Communication

Question 11.
What is a phrase?
(a) A group of ideas that form a complete paragraph.
(b) A group of words which does not make complete sense in itself.
(c) A group of words that communicate a complete thought.
(d) A group of words that contains all the punctuation marks.
Answer:
(b) A group of words which does not make complete sense in itself.

Question 12.
Which of these is a phrase?
(a) I came late.
(b) Reena is singing a song.
(c) In the dark.
(d) The horse runs.
Answer:
(c) In the dark.

Question 13.
Identify the subject in the sentence. “The girls are singing a song”.
(a) The girls
(b) Girls are singing
(c) A song
(d) Singing a song
Answer:
(a) The girls

Communication Skills Class 9 MCQ Online Test

Question 14.
Which of these sentences has both indirect and direct objects?
(a) I am playing football.
(b) Mother is cooking food.
(c) He gave him a pen.
(d) She came home on time.
Answer:
(c) He gave him a pen.

Question 15.
When do we say ‘Good Night’?
(a) 11:00 am
(b) 8 p.m
(c) At the end of the conversation in the evening
(d) 6 p.m.
Answer:
(c) At the end of the conversation in the evening

Question 16.
At 4 p.m, we say
(a) Good Morning
(b) Good Afternoon
(c) Good Evening
(d) Good Night
Answer:
(b) Good Afternoon

Question 17.
If you want to know the address of a person, which question should you ask?
(a) Where do you live?
(b) Is this your house?
(c) Can you take me to your house?
(d) How can I reach your house?
Answer:
(a) Where do you live?

Question 18.
Which of these is the correct way to convert the sentence “It was a beautiful dress”, into a question?
(a) It was a beautiful dress?
(b) What a beautiful dress it was?
(c) A beautiful dress was it?
(d) Was it a beautiful dress?
Answer:
(d) Was it a beautiful dress?

Communication Skills Class 9 MCQ Online Test

Question 19.
Which of these is a close-ended question?
(a) Where do you live?
(b) Did you have breakfast?
(c) What are your hobbies?
(d) Which is your favourite film?
Answer:
(b) Did you have breakfast?

Question 20.
“Get out of the class”. This is a / a n
(a) Question
(b) Exclamatory sentence
(c) Statement
(d) Order
Answer:
(d) Order

Question 21.
Raju needs to get out of a building. Which of the following questions will help him?
(a) How many floors does this building have?
(b) Where is the exit?
(c) How many exit gates are there in tt h zildng?
(d) How do you people go out of this building?
Answer:
(b) Where is the exit?

Question 22.
Correct arrangement of following words to form a question is this/a/dress/new/is
(a) Is this dress new?
(b) This is a new dress?
(c) Is this a new dress?
(d) A new dress is this?
Answer:
(c) Is this a new dress?

Question 23.
You may say ‘Hello’ when you meet
(a) Your elders
(b) Your boss
(c) Your seniors in office
(d) All of these
Answer:
(d) All of these

Communication Skills Class 9 MCQ Online Test

Question 24.
Combination vowel sounds are also called
(a) Consonant
(b) Vowel
(c) Diphthongs
(d) None of these
Answer:
(c) Diphthongs

Question 25.
‘Pen’ is an example of
(a) Vowel sound
(b) Consonant sound
(c) Diphthong sound
(d) None of these
Answer:
(b) Consonant sound

Question 26.
Which of these sentences is in Active Voice?
(a) The letter delivered by the postman.
(b) The song was sung by her.
(c) They are playing cricket.
(d) The plants are being watered by the gardener.
Answer:
(c) They are playing cricket.

Question 27.
Identify the object in the sentence, “The girls are singing a song.”
(a) The Girls
(b) Are Singing
(c) A song
(d) Singing a song
Answer:
(c) A song

Question 28.
In the context of communication, which of the following are considered types of communication?
I. Verbal Communication
Competency Based Ques.
II. Nonverbal Communication
III. Written Communication
IV. Emotional Communication
(a) I and II
(b) II and III
(c) I, II, and III
(d) I, II, III, and IV
Answer:
(c) I, II, and III

Communication Skills Class 9 MCQ Online Test

Question 29.
Identify the parts of speech in the sentence: “The energetic puppy quickly chased its tail around the backyard.”
I. Noun
II. Verb
III. Adjective
IV. Adverb
(a) I and II
(b) II and III
(c) I, III, and IV
(d) I, II, III, and IV
Answer:
(d) I, II, III, and IV

Question 30.
Which methods can be considered as forms of communication?
I. Speech
II. Body language
III. Written messages
IV. Morse code
(a) I and II
(b) II and III
(c) I, II, and III
(d) I, III, and IV
Answer:
(c) I, II, and III

Question 31.
When discussing perspective in communication, which factors contribute to shaping one’s perspective?
I. Cultural background
II. Personal experiences
III. Social environment
IV. Genetic makeup
(a) I and II
(b) II and III
(c) I, II, and III
(d) II, III, and IV
Answer:
(c) I, II, and III

Communication Skills Class 9 MCQ Online Test

Question 32.
Which of the following are parts of speech in writing skills?
I. Noun
II. Verb
III. Conjunction
IV. Pronoun
(a) I and II
(b) II and III
(c) I, II, and IV
(d) III and IV
Answer:
(c) I, II, and IV

Statement Based Questions

Question 1.
Statement 1 Written communication is formal and rigid.
Statement 2 The method of communication involves only verbal expressions.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(c) Statement 1 is correct but Statement 2 is incorrect

Question 2.
Statement 1: Nouns and verbs are parts of speech.
Statement 2: A sentence must always begin with a subject.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Question 3.
Statement 1: Nouns are words that represent people, places, things, or ideas.
Statement 2: Conjunctions are used to express action or a state of being.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(c) Statement 1 is correct but Statement 2 is incorrect

Communication Skills Class 9 MCQ Online Test

Question 4.
Statement 1: The basic elements of a sentence include subject, predicate, and object.
Statement 2: Pronouns are used to replace only proper nouns in sentences.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 And Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(c) Statement 1 is correct but Statement 2 is incorrect

Question 5.
Statement 1: Basic greetings are universal and do not vary across cultures.
Statement 2: Introductions should always include personal details like age and address.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(c) Statement 1 is correct but Statement 2 is incorrect

Assertion and Reason Based Questions

Question 1.
Assertion: Non-verbal communication is an essential method of communication.
Reason: Non-verbal cues such as facial expressions and body language can convey messages more effectively than words alone.
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of Assertion.
(c) Assertion is true, but Reason is false.
(d) Assertion is false, but Reason is true.
Answer:
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.

Question 2.
Assertion: Effective communication is a two-way process.
Reason: It involves both sending and receiving messages, ensuring mutual understanding.
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of Assertion.
(c) Assertion is true, but Reason is false.
(d) Assertion is false, but Reason is true.
Answer:
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.

Communication Skills Class 9 MCQ Online Test

Question 3.
Assertion: Pronunciation plays a significant role in effective communication.
Reason: Clear and accurate pronunciation enhances the clarity of the message and reduces the chances of miscommunication.
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of Assertion.
(c) Assertion is true, but Reason is false.
(d) Assertion is false, but Reason is true.
Answer:
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.

Question 4.
Assertion: Understanding the parts of speech is crucial for improving writing skills.
Reason: Parts of speech help in constructing grammaticany correct and coherent sentences.
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of Assertion.
(c) Assertion is true, but Reason is false.
(d) Assertion is false, but Reason is true.
Answer:
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.

Question 5.
Assertion: Perspective in communication refers to the way an individual sees and interprets information.
Reason: Different perspectives can lead to misunderstandings in communication.
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of Assertion.
(c) Assertion is true, but Reason is false.
(d) Assertion is false, but Reason is true.
Answer:
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.

Communication Skills Class 9 MCQ Online Test

Question 6.
Assertion: Effective communication is essential for success in both personal and professional life.
Reason: Communication helps in expressing thoughts, ideas, and emotions, leading to better understanding and cooperation.
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of Assertion.
(c) Assertion is true, but Reason is false.
(d) Assertion is false, but Reason is true.
Answer:
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of Assertion.

The post Communication Skills Class 9 MCQ Online Test appeared first on Learn CBSE.

Self Management Skills Class 9 MCQ Online Test

$
0
0

Students find these Class 9 AI MCQ Chapter 2 Self Management Skills Class 9 MCQ Online Test with Answers helpful for self-assessment and preparation.

Class 9 AI Self Management Skills MCQ

MCQ on Self Management Skills Class 9

Class 9 Self Management Skills MCQ – Self Management Skills MCQ Class 9

Multiple Choice Questions

Question 1.
Which of the following is not a self-management skill?
(a) Self motivation
(b) Problem solving
(c) Team work
(d) Drawing pictures
Answer:
(d) Drawing pictures

Question 2.
Believing in yourself that you can do any task that is given to you is $\qquad$
(a) Self-control
(b) Self-awareness
(c) Self-confidence
(d) Positive thinking
Answer:
(c) Self-confidence

Question 3.
Ability to control your behaviour, discipline etc is regarded as
(a) Self-control
(b) Self-awareness
(c) Self-confidence
(d) Problem solving
Answer:
(a) Self-control

Self Management Skills Class 9 MCQ Online Test

Question 4.
Expressing certainty or affirmation even in tough situation is known as $\qquad$
(a) Self-motivation
(b) Positive thinking
(c) Self-awareness
(d) Self-confidence
Answer:
(b) Positive thinking

Question 5.
What is self-management?
(a) Self-regulation
(b) Self-awareness
(c) Self perseverance
(d) Both (a) and (b)
Answer:
(d) Both (a) and (b)

Question 6.
Which type of people can easily convince others?
(a), Rich people
(b) Self-confident people
(c) Talkative people
(d) Influential people
Answer:
(b) Self-confident people

Self Management Skills Class 9 MCQ Online Test

Question 7.
Which of the following statements about positive thinking is correct?
(a) Positive thinking results in positive circumstances.
(b) Positive thinking helps in focusing on the bright side of an individual’s life.
(c) Positive people can easily overcome problems and achieve success.
(d) All of the above
Answer:
(d) All of the above

Question 8.
Suggest the following factor which helps in building self-confidence.
(a) Geographical factors
(b) Climate factors
(c) Social factors
(d) None of these
Answer:
(b) Climate factors

Question 9.
What makes us strong and determined?
(a) Experience
(b) Positive thinking
(c) Present environment
(d) None of these
Answer:
(b) Positive thinking

Question 10.
I have the power to make my dreams true is an example of
(a) Self-awareness
(b) Self-confidence
(c) Positive thinking
(d) Self-control
Answer:
(b) Self-confidence

Self Management Skills Class 9 MCQ Online Test

Question 11.
Planning concrete goals to be accomplished within a set timeframe is known as
(a) Time management
(b) Goal setting
(c) Problem solving
(d) None of these
Answer:
(a) Time management

Question 12.
Despite having a flat foot, Dipa Karmakar became the first Indian female gymnast who took part in the Olympics. It is an example of her $\qquad$ Competency Based Ques.
(a) Time management
(b) Self awareness
(c) Hard work (Self-confidence)
(d) None of the above
Answer:
(c) Hard work (Self-confidence)

Question 13.
What is an example of time management?
(a) The skill of completing a work previously, so as to have leisure time.
(b) The skill of planning and organising time to manage all activities.
(c) The skill of finishing work within 24 hours.
(d) None of the above
Answer:
(b) The skill of planning and organising time to manage all activities.

Question 14.
Personal hygiene is important because it help us
(a) Stay healthy
(b) Create good images
(c) Avoid self control
(d) Both (a) and (b)
Answer:
(d) Both (a) and (b)

Self Management Skills Class 9 MCQ Online Test

Question 15.
Arrange serially the essential steps of hand washing. Competency Based Ques.
(i) Apply enough soap to cover the hand.
(ii) Wet hands with water.
(iii) Rinse hands thoroughly with water.
(iv) Rub inner surface of palms.
(a) (ii), (i), (iv), (iii)
(b) (i), (iii), (ii), (iv)
(c) (ii), (iii), (iv), (i)
(d) (i), (iv), (iii), (ii)
Answer:
(a) (ii), (i), (iv), (iii)

Question 16.
Which of the followings is correct to maintain positivity?
(a) Make time to relax.
(b) Find out the best in any situation.
(c) Criticise the negative things.
(d) Both (a) and (b)
Answer:
(d) Both (a) and (b)

Question 17.
After losing a game a player considers to improve the standard of the team for next time – it is an example of Competency Based Ques.
(a) Self-control
(b) Self-awareness
(c) Problem solving
(d) Positive thinking
Answer:
(d) Positive thinking

Question 18.
Proper dressing helps a person
(a) to make good impression of himself.
(b) to feel confident about himself.
(c) to become famous.
(d) Both (a) and (b)
Answer:
(d) Both (a) and (b)

Self Management Skills Class 9 MCQ Online Test

Question 19.
When it comes to personal hygiene and grooming, which practices contribute to maintaining a healthy and presentable appearance?
I. Regular handwashing
II. Neglecting dental care
III. Wearing clean and well-fitted clothes
IV. Ignoring body odor
(a) Only I and III
(b) Only II and IV
(c) Both I and III
(d) Both II and IV
Answer:
(a) Only I and III

Question 20.
In the context of self-management skills, which of the following are considered essential components for personal development?
Competency Based Ques.
I. Goal setting
II. Time management
III. Emotional intelligence
IV. Social media expertise
(a) I and II
(b) II and III
(c) I, II, and III
(d) I, III, and IV
Answer:
(c) I, II, and III

Statement Based Questions

Question 1.
Statement 1: Self-management does not involve the ability to prioritize tasks effectively.
Statement 2: Self-management skills include the capacity to organize and manage time efficiently.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(d) Statement 2 is correct but Statement 1 is incorrect

Question 2.
Statement 1: Strength and weakness analysis helps in understanding personal capabilities.
Statement 2: Identifying strengths and weaknesses is a crucial step in self-improvement.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Self Management Skills Class 9 MCQ Online Test

Question 3.
Statement 1: Personal hygiene is essential for maintaining good health.
Statement 2: Grooming includes practices related to personal appearance and cleanliness.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Question 4.
Statement 1: Self-confidence is built through positive thinking and overcoming challenges.
Statement 2: People who are confident believe that they can do anything given to them in any situation.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Question 5.
Statement 1: Self-management involves setting goals and planning how to achieve them.
Statement 2: Positive thinking should be ignore in self-management.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(c) Statement 1 is correct but Statement 2 is incorrect

Question 6.
Statement 1: Self-management skills include time management and organization.
Statement 2: Grooming is a part of self-confidence development.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Assertion and Reason Based Questions

Question 1.
Assertion: Self-management skills are essential for personal and academic success.
Reason: They help individuals organize their time, set goals, and prioritize tasks effectively.
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of Assertion.
(c) Assertion is true, but Reason is false.
(d) Both Assertion and Reason are false.
Answer:
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.

Question 2.
Assertion: Personal hygiene and grooming are important aspects of self-confidence.
Reason: Maintaining good personal hygiene and grooming enhances an individual’s self-esteem and how others perceive them.
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of Assertion.
(c) Assertion is true, but Reason is false.
(d) Both Assertion and Reason are false.
Answer:
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.

Self Management Skills Class 9 MCQ Online Test

Question 3.
Assertion: Interest in a particular activity may not necessarily indicate the ability to perform it proficiently.
Reason: For instance, one may like cricket but may lack the necessary power or skill required to play the game, showcasing a misalignment between interest and ability.
(a) Both assertion and reason are true, and the reason is the correct explanation of the assertion.
(b) Both assertion and reason are true, but the reason is not the correct explanation of the assertion.
(c) Assertion is true, but the reason is false.
(d) Assertion is false, but the reason is true.
Answer:
(a) Both assertion and reason are true, and the reason is the correct explanation of the assertion.

The post Self Management Skills Class 9 MCQ Online Test appeared first on Learn CBSE.

Basic ICT Skills Class 9 MCQ Online Test

$
0
0

Students find these Class 9 AI MCQ Chapter 3 Basic ICT Skills Class 9 MCQ Online Test with Answers helpful for self-assessment and preparation.

Class 9 AI Basic ICT Skills MCQ

MCQ on Basic ICT Skills Class 9

Class 9 Basic ICT Skills MCQ – Basic ICT Skills MCQ Class 9

Multiple Choice Questions

Question 1.
……… includes computers, Internet, broadcasting technologies and telephony.
(a) ICT
(b) Browser
(c) IT
(d) None of these
Answer:
(a) ICT

Question 2.
With a ………. you can only make calls and receive calls.
(a) Smartphone
(b) Android phone
(c) Simple phone
(d) Tablet
Answer:
(c) Simple phone

Basic ICT Skills Class 9 MCQ Online Test

Question 3.
This is used to enter appointments, remainders etc.
(a) Mail
(b) Calendar
(c) Phone
(d) Clock
Answer:
(b) Calendar

Question 4.
Which of the following is/are features of mobile device?
(a) Bluetooth
(b) Wi-Fi
(c) Camera
(d) All of these
Answer:
(d) All of these

Question 5.
The top part of the screen is called the $\qquad$
(a) Status bar
(b) Main part
(c) Dock
(d) All of these
Answer:
(a) Status bar

Question 6.
Which of the following device is used to enter information into the computer?
(a) Output
(b) Input
(c) Computer
(d) Memory
Answer:
(b) Input

Basic ICT Skills Class 9 MCQ Online Test

Question 7.
It is used to record voice on the computer.
(a) Projector
(b) Speakers
(c) Microphone
(d) Scanner
Answer:
(c) Microphone

Question 8.
Which of the following is a brain of computer?
(a) RAM
(b) ROM
(c) ALU
(d) CPU
Answer:
(d) CPU

Question 9.
The bandwidth is usually expressed in
(a) bits per second
(b) bytes per second
(c) Both (a) and (b)
(d) None of these
Answer:
(a) bits per second

Question 10.
……… is a document present on a computer that is connected to the Internet.
(a) Web page
(b) Website
(c) Browser
(d) Server
Answer:
(a) Web page

Question 11.
World Wide Web is made up of
(a) web page
(b) web browser
(c) a system to transfer information
(d) All of the above
Answer:
(d) All of the above

Question 12.
When working with files and folders on a computer, what does the term “directory” commonly refer to?
I. A storage device
II. A type of file format
III. A container for organizing files
IV. A computer program
(a) Only I
(b) Both II and IV
(c) Only III
(d) None of these
Answer:
(c) Only III

Basic ICT Skills Class 9 MCQ Online Test

Question 13.
In the context of basic computer operations, what is the primary function of the “Copy” operatior
I. To permanently delete a file
II. To duplicate a file in the same location
III. To move a file to a different location
IV. To open a file for viewing
(a) Only II
(b) Both I and III
(c) Only IV
(d) None of these
Answer:
(a) Only II

Question 14.
When considering Ports and Connections on a computer system, what does a USB port typically allow for?
I. Audio output
II. Peripheral devices
III. Internet connectivity
IV. Display connection
(a) Only I
(b) Both II and III
(c) Only IV
(d) Only II
Answer:
(d) Only II

Statement Based Questions

Question 1.
Statement 1: Files and folders are used to organize and store data on a computer.
Statement 2: The primary purpose of folders is to display information on the computer desktop.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(c) Statement 1 is correct but Statement 2 is incorrect

Question 2.
Statement 1: Mobile device layout includes hardware components such as the screen, buttons, and speakers.
Statement 1: Mobile device layout includes hardware components such as the screen, buttons, and speakers.
Statement 2: Basic computer operations involve complex tasks that require advanced technical knowledge.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(c) Statement 1 is correct but Statement 2 is incorrect

Question 3.
Statement 1: ICT toóls, such as smartphones and tablets, play a significant role in comimunication and productivity.
Statement 2: Introduction to email is a fundamental aspect of ICT at the workplace.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Basic ICT Skills Class 9 MCQ Online Test

Question 4.
Statement 1: Ports and connections are used to connect peripherals to a computer.
Statement 2: USB (Universal Serial Bus) is a common type of port used for connecting devices.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Question 5.
Statement 1: Computer systems consist of hardware and software components.
Statement 2: ICT at home involves the use of technology for various domestic activities.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Question 6.
Statement 1: Email is a common method of electronic communication.
Statement 2: Attachments in emails allow users to send and receive files.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Assertion and Reason based Questions

Question 1.
Assertion: Mobile device layout is designed to provide an intuitive and user-friendly experience for individuals using smartphones and tablets.
Reason: The layout includes touchscreens, icons, and gestures that make navigation easy for users.
(a) Both Assertion and Reason are true, and Reason is the correct explanation for Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation for Assertion.
(c) Assertion is true, but Reason is false.
(d) Both Assertion and Reason are false.
Answer:
(a) Both Assertion and Reason are true, and Reason is the correct explanation for Assertion.

Question 2.
Assertion: Ports and connections are crucial components of a computer system.
Reason: They enable the connection of external devices such as printers, USB drives, and monitors to the computer.
(a) Both Assertion and Reason are true, and Reason is the correct explanation for Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation for Assertion.
(c) Assertion is true, but Reason is false.
(d) Both Assertion and Reason are false.
Answer:
(a) Both Assertion and Reason are true, and Reason is the correct explanation for Assertion.

Basic ICT Skills Class 9 MCQ Online Test

Question 3.
Assertion: In Email address, (.) is used as an separator.
Reason: Email allows users to send and receive messages, attachments, and documents without internet.
(a) Both Assertion and Reason are true, and Reason is the correct explanation for Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation for Assertion.
(c) Assertion is true, but Reason is false.
(d) Both Assertion and Reason are false.
Answer:
(d) Both Assertion and Reason are false.

Question 4.
Assertion: Notepad has .doc file extension.
Reason: Notepad is used to send email.
(a) Both Assertion and Reason are true, and Reason is the correct explanation for Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation for Assertion.
(c) Assertion is true, but Reason is false.
(d) Both Assertion and Reason are false.
Answer:
(d) Both Assertion and Reason are false.

Question 5.
Assertion: Email can be sent to multiple people at the same time.
Reason: Email is only used for professional communication.
(a) Both Assertion and Reason are true, and Reason is the correct explanation for Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation for Assertion.
(c) Assertion is true, but Reason is false.
(d) Both Assertion and Reason are false.
Answer:
(c) Assertion is true, but Reason is false.

Question 6.
Assertion: ICT tools like smartphones and tablets have become essential in the workplace for ‘ communication and productivity.
Reason: These devices allow employees to access emails, collaborate on documents, and stay connected with colleagues even while on the move.
(a) Both Assertion and Reason are true, and Reason is the correct explanation for Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation for Assertion.
(c) Assertion is true, but Reason is false.
(d) Both Assertion and Reason are false.
Answer:
(a) Both Assertion and Reason are true, and Reason is the correct explanation for Assertion.

Question 7.
Assertion: Basic computer operations involve input, processing, storage, and output.
Reason: These operations are fundamental to the functioning of a computer system, allowing it to perform tasks and solve problems.
(a) Both Assertion and Reason are true, and Reason is the correct explanation for Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation for Assertion.
(c) Assertion is true, but Reason is false.
(d) Both Assertion and Reason are false.
Answer:
(a) Both Assertion and Reason are true, and Reason is the correct explanation for Assertion.

Basic ICT Skills Class 9 MCQ Online Test

Question 8.
Assertion: Files and folders are used to organize and manage data on a computer.
Reason: Folders can contain multiple files, and organizing data in this way makes it easier to locate and access information.
(a) Both Assertion and Reason are true, and Reason is the correct explanation for Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation for Assertion.
(c) Assertion is true, but Reason is false.
(d) Both Assertion and Reason are false.
Answer:
(a) Both Assertion and Reason are true, and Reason is the correct explanation for Assertion.

The post Basic ICT Skills Class 9 MCQ Online Test appeared first on Learn CBSE.

Entrepreneurial Skills Class 9 MCQ Online Test

$
0
0

Students find these Class 9 AI MCQ Chapter 4 Entrepreneurial Skills Class 9 MCQ Online Test with Answers helpful for self-assessment and preparation.

Class 9 AI Entrepreneurial Skills MCQ

MCQ on Entrepreneurial Skills Class 9

Class 9 Entrepreneurial Skills MCQ – Entrepreneurial Skills MCQ Class 9

Multiple Choice Questions

Question 1.
Businesses cater to the need of the
(a) area
(b) society
(c) market
(d) village
Answer:
(b) society

Question 2.
An entrepreneur is a self employed person and is willing to take a
(a) product and service
(b) satisfying human need
(c) calculated risk
(d) regular production
Answer:
(c) calculated risk

Question 3.
The role and benefits of entrepreneurship are
(a) Social development
(b) Improved standard of living
(c) Optimal use of resources
(d) All of the above
Answer:
(d) All of the above

Entrepreneurial Skills Class 9 MCQ Online Test

Question 4.
Entrepreneurs uses optimal ways of using the resources to
(a) reduce cost
(b) increase profit
(c) Both of these
(d) None of these
Answer:
(c) Both of these

Question 5.
Qualities of entrepreneurs are
(a) hardworking
(b) never giving up
(c) perseverance
(d) All of these
Answer:
(d) All of these

Question 6.
Experiment with different idea is the quality related to
(a) perseverance
(b) confidence
(c) trial and error
(d) creativity
Answer:
(c) trial and error

Question 7.
The quality of creativity and innovation of entrepreneurs is related to
(a) patience
(b) positivity
(c) hardworking
(d) solution
Answer:
(d) solution

Entrepreneurial Skills Class 9 MCQ Online Test

Question 8.
Ability to take up risks is a
(a) role of entrepreneur
(b) quality of entrepreneur
(c) characteristics of entrepreneurship
(d) None of the above
Answer:
(c) characteristics of entrepreneurship

Question 9.
The employees are
(a) self employed
(b) wage-earner
(c) take risk
(d) self job decider
Answer:
(b) wage-earner

Question 10.
A risk may lead to a
(a) excess of earning
(b) loss in future
(c) human needs
(d) growth
Answer:
(b) loss in future

Question 11.
Wage employment is always consists of
(a) one party
(b) two parties
(c) three parties
(d) four parties
Answer:
(b) two parties

Question 12.
The wage employment does not involve too much
(a) salary
(b) opportunity
(c) innovation
(d) risk
Answer:
(d) risk

Question 13.
The principle focus of entrepreneurship is
(a) more risk
(b) more work
(c) more profit
(d) more job
Answer:
(c) more profit

Entrepreneurial Skills Class 9 MCQ Online Test

Question 14.
Product and services both are sold in
(a) Product business
(b) Service business
(c) Hybrid business
(d) General business
Answer:
(c) Hybrid business

Question 15.
Product can be seen and touched in
(a) Product business
(b) Service business
(c) Hybrid business
(d) General business
Answer:
(a) Product business

Question 16.
Manufacturing businesses are the types of
(a) Trade businesses
(b) Product based business
(c) Hybrid based business
(d) Service based business
Answer:
(b) Product based business

Question 17.
Which one is not steps of starting a business?
(a) Business idea
(b) Getting money and material
(c) Understanding customer needs
(d) Trade services
Answer:
(d) Trade services

Question 18.
What is entrepreneurship?
i. The process of developing a business plan and running a business
ii. The act of being self-employed and earning a steady source of income
iii. Launching and running a business using innovation to meet customer needs
iv. The continuous production and distribution of goods and services
(a) Both i and ii
(b) Only iii
(c) Both i and iii
(d) Only iv
Answer:
(c) Both i and iii

Entrepreneurial Skills Class 9 MCQ Online Test

Question 19.
Which factor is crucial for economic development in the context of entrepreneurship?
i. Increased competition in the market
ii. Entrepreneurial creation of jobs
iii. Optimal use of renewable resources
iv. Lower prices of products and services
(a) Only i and ii
(b) Only ii and iii
(c) Only ii and iv
(d) All of these
Answer:
(a) Only i and ii

Question 20.
What is the primary role of an entrepreneur in improving the standard of living?
i. Creating new business opportunities
ii. Selling products at competitive prices
iii. Providing better and cheaper products and services
iv. Introducing innovative marketing ideas
(a) Only i
(b) Only ii
(c) Only iii
(d) Both ii and iii
Answer:
(c) Only iii

Question 21.
Which quality is essential for a successful entrepreneur?
i. Patience
ii. Positivity
iii. Hardworking and perseverance
iv. Open to trial and error
(a) Only i, ii, and iii
(b) Only ii, iii, and iv
(c) Only i, iii, and iv
(d) All of these
Answer:
(d) All of these

Entrepreneurial Skills Class 9 MCQ Online Test

Question 22.
What distinguishes a self-employed person from an entrepreneur?
Competency Based Ques.
i. Willingness to take a calculated risk
ii. Running the business solely for a steady income
iii. Being open to new ideas and innovation
iv. Engaging in continuous production and distribution
(a) Only i and ii
(b) Only ii and iii
(c) Only i and iii
(d) All of these
Answer:
(c) Only i and iii

Statement Based Questions

Question 1.
Statement 1: Entrepreneurship is the process of developing a business plan, launching, and running a business using innovation to meet customer needs and to make a profit.
Statement 2: Enterprise is a project or undertaking that is bold and fulfills a need of the society which no one has ever addressed.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Question 2.
Statement 1: Entrepreneurs create value by making available better and cheaper products and services for customers.
Statement 2: Entrepreneurs grow their businesses, and as they do, investors put money into their businesses expecting good returns.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Question 3.
Statement 1: Improved Standard of Living-More things available to live a comfortable life.
Statement 2: Entrepreneurs compete in the market, leading to lower prices of products.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correçt but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Entrepreneurial Skills Class 9 MCQ Online Test

Question 4.
Statement 1: Entrepreneurship involves taking calculated risks.
Statement 2: Wage employment involves too much risk.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(c) Statement 1 is correct but Statement 2 is incorrect

Question 5.
Statement 1: Financial literacy and money management skills are characteristics of entrepreneurship.
Statement 2: In wage employment, the continuity of service depends on the terms and conditions laid down in the contract.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Assertion and Reason Based Questions

Question 1.
Assertion: Entrepreneurship involves the continuous production and distribution of goods and services to fulfill societal needs.
Reason: Entrepreneurs take calculated risks to bridge the gap between demand and supply by introducing new ideas and methods.
(a) Both assertion and reason are true, and reason is the correct explanation of the assertion.
(b) Both assertion and reason are true, but reason is not the correct explanation of the assertion.
(c) Assertion is true, but the reason is false.
(d) Assertion is false, but the reason is true.
Answer:
(a) Both assertion and reason are true, and reason is the correct explanation of the assertion.

Question 2.
Assertion: A business where a seller helps the buyer to finish some work.
Reason: The example of this business is a sports shop.
(a) Both assertion and reason are true, and reason is the correct explanation of the assertion.
(b) Both assertion and reason are true, but reason is not the correct explanation of the assertion.
(c) Assertion is true, but the reason is false.
(d) Assertion is false, but the reason is true.
Answer:
(c) Assertion is true, but the reason is false.

Question 3.
Assertion: Entrepreneurship leads only self development by generating employment opportunities.
Reason: As entrepreneurs scale their businesses, they create more job opportunities, contributing to higher employment rates.
(a) Both assertion and reason are true, and reason is the correct explanation of the assertion.
(b) Both assertion and reason are true, but reason is not the correct explanation of the assertion.
(c) Assertion is true, but the reason is false.
(d) Assertion is false, but the reason is true.
Answer:
(d) Assertion is false, but the reason is true.

Entrepreneurial Skills Class 9 MCQ Online Test

Question 4.
Assertion: Entrepreneurs contribute to improving the standard of living by providing innovative solutions to societal problems.
Reason: Through creativity and innovation, entrepreneurs introduce products and services that enhance people’s quality of life.
(a) Both assertion and reason are true, and reason is the correct explanation of the assertion.
(b) Both assertion and reason are true, but reason is not the correct explanation of the assertion.
(c) Assertion is true, but the reason is false.
(d) Assertion is false, but the reason is true.
Answer:
(a) Both assertion and reason are true, and reason is the correct explanation of the assertion.

Question 5.
Assertion: Entrepreneurship involves taking calculated risks.
Reason: Entrepreneurs are afraid of failure and hesitate to continue their course of action until they succeed.
(a) Both assertion and reason are true, and the reason is the correct explanation of the assertion.
(b) Both assertion and reason are true, but the reason is not the correct explanation of the assertion.
(c) Assertion is true, but the reason is false.
(d) Assertion is false, but the reason is true.
Answer:
(c) Assertion is true, but the reason is false.

Question 6.
Assertion: In wage employment, continuity of service depends on terms laid down in the contract.
Reason: Continuity of service does not depend upon the relationship between two parties.
(a) Both assertion and reason are true, and the reason is the correct explanation of the assertion.
(b) Both assertion and reason are true, but the reason is not the correct explanation of the assertion.
(c) Assertion is true, but the reason is false.
(d) Assertion is false, but the reason is true
Answer:
(c) Assertion is true, but the reason is false.

The post Entrepreneurial Skills Class 9 MCQ Online Test appeared first on Learn CBSE.

Green Skills Class 9 MCQ Online Test

$
0
0

Students find these Class 9 AI MCQ Chapter 5 Green Skills Class 9 MCQ Online Test with Answers helpful for self-assessment and preparation.

Class 9 AI Green Skills MCQ

MCQ on Green Skills Class 9

Class 9 Green Skills MCQ – Green Skills MCQ Class 9

Multiple Choice Questions

Question 1.
Which is an example of a natural resource?
(a) Natural gas
(b) Copper
(c) Ferţile land
(d) All of these
Answer:
(d) All of these

Question 2.
Which type of resources can be replenished?
(a) Non-renewable resources
(b) Exhaustible resources
(c) Renewable resources
(d) Mineral resources
Answer:
(c) Renewable resources

Question 3.
Which is an artificial resource?
(a) Plants
(b) Plastics
(c) Water
(d) Air
Answer:
(b) Plastics

Green Skills Class 9 MCQ Online Test

Question 4.
Biomass and liquified petroleum gas are examples of
(a) Renewable resources
(b) Non-renewable resources
(c) Energy resources
(d) Inexhaustible resources
Answer:
(c) Energy resources

Question 5.
Which is not an effect of mining?
(a) Extinction of a species
(b) Formation of sinkholes
(c) Loss of biodiversity
(d) Contamination of groundwater
Answer:
(a) Extinction of a species

Question 6.
Which of the following is not an example of forest resource?
(a) Tannins
(b) Horns and hides
(c) Wood
(d) Gypsym
Answer:
(d) Gypsym

Question 7.
Fossil fuel emissions cause which of the following?
(a) Air pollution
(b) Water pollution
(c) Land pollution
(d) Noise pollution
Answer:
(a) Air pollution

Question 8.
Which of the following is a biodegradable pollutant?
(a) Lead
(b) Plastic
(c) Cattle dung
(d) Insecticide
Answer:
(c) Cattle dung

Green Skills Class 9 MCQ Online Test

Question 9.
Which is not a naturally occurring green house gas?
(a) Nitrous Oxide
(b) Hydrofluorocarbons
(c) Ozone
(d) Methane
Answer:
(b) Hydrofluorocarbons

Question 10.
Learning about the environment, mainly focuses on
(a) learning by doing
(b) direct contact with environment
(c) aesthetic appreciation
(d) acquiring knowledge about environment
Answer:
(d) acquiring knowledge about environment

Question 11.
If you are starting to use jute bags instead of plastic bags, then which ‘R’ you are doing?
(a) Reduce
(b) Reuse
(c) Recycle
(d) All 3R
Answer:
(a) Reduce

Question 12.
To reduce wastage of any kind you should first
(a) avoid overuse of paper
(b) segregate waste before throwing
(c) prefer using recycled water
(d) All of the above
Answer:
(d) All of the above

Question 13.
Sustainable development goals are also known as
(a) Green goals
(b) Global goals
(c) Energy saving goals
(d) Scientific goals
Answer:
(b) Global goals

Green Skills Class 9 MCQ Online Test

Question 14.
Which of the following is not a component of green economy?
(a) Organic farming
(b) Intensive agriculture
(c) Biomass and Biogas
(d) Waste management
Answer:
(b) Intensive agriculture

Question 15.
Which among the following job do not require any green skill?
(a) Organic farmer
(b) Solar engineer
(c) Graphic designer
(d) Wind mill mechanic
Answer:
(c) Graphic designer

Question 16.
An area in which green skills contribute to sustainable development
(a) rain water harvesting
(b) automotive manufacturing
(c) building factories
(d) None of the above
Answer:
(a) rain water harvesting

Question 17.
Green project ‘Swachh Cooperative’ is about
(a) teaching hygenic habits
(b) efficient sewage system
(c) disposal and management of waste
(d) providing energy efficient chulhas
Answer:
(c) disposal and management of waste

Question 18.
What are the main categories of natural resources?
I. Exhaustible Resources
II. Renewable Resources
III. Inexhaustible Resources
IV. Non-renewable Resources
(a) Both I and II
(b) Both II and III
(c) Only III
(d) All of these
Answer:
(d) All of these

Green Skills Class 9 MCQ Online Test

Question 19.
Which of the following activities is an example of overexploitation?
Competency Based Ques.
I. Excessive use of chemicals in agriculture
II. Mining for extracting valuable elements
III. Deforestation for non-forest purposes
IV. Separating waste before disposal
(a) Only I
(b) Both II and III
(c) Only IV
(d) All of these
Answer:
(b) Both II and III

Question 20.
The government is running a compaign about the use of water and how to save more water by reducing its overuse and misuse and by encouraging the use of recycled water.
Why is government putting so much importance on water and its conservation?
(a) Water is important for life
(b) Water is an important natural resource
(c) Water is saved to avoid droughts
(d) Water is saved for producing energy
Answer:
(a) Water is important for life
(b) Water is an important natural resource

Question 21.
A green economy is defined as low carbon producing, resource efficient and socially inclusive economy. In a green economy, growth in employment and income are driven by public and private investment into such economic activities, infrastructure and assets that allow reduced carbon emissions and pollution, enhanced energy and resource efficiency and prevention of the loss of biodiversity and ecosystem services.
Which of the following are elements of green economy?
(a) Generation and use of renewable energy
(b) Green jobs’ generation
(c) Preservation and sustainable use of natural resources
(d) All of the above
Answer:
(d) All of the above

Question 22.
Which method is not mentioned for soil conservation in the given content?
I. Maintenance of soil fertility
II. Reforestation
III. Terracing
IV. Crop rotation
(a) Only II
(b) Both I and IV
(c) Only IV
(d) Both III and IV
Answer:
(c) Only IV

Green Skills Class 9 MCQ Online Test

Question 23.
How can water conservation be achieved according to the given content?
I. Growing vegetation in catchment areas
II. Constructing dams and reservoirs
III. Treating sewage before releasing clear water into rivers
IV. Allowing unlimited water use in day-to-day life
(a) Both I, II and III
(b) Only III
(c) Only IV
(d) All of these
Answer:
(a) Both I, II and III

Question 24.
What does “sustainable development” aim to achieve, according to the content?
I. Meeting the needs of the present without compromising the future
II. Maximizing economic growth at the expense of the environment
III. Ignoring the needs of future generations
IV. Exploiting natural resources without consequences
(a) Only I
(b) Both I and II
(c) Only III
(d) Only II
Answer:
(a) Only I

Statement Based Questions

Question 1.
Statement 1: Society interacts with the environment, and changes it at the same time.
Statement 2: Over the years, economic development has led to an increase in environmental pollution.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Question 2.
Statement 1: Non-renewable resources are those that cannot easily be replaced once they are destroyed.
Statement 2: Fossil fuels are an example of non-renewable resources.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Question 3.
Statement 1: Renewable resources are those that are constantly available or can be reasonably replaced or recovered.
Statement 2: Solar energy is an example of an inexhaustible resource.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Green Skills Class 9 MCQ Online Test

Question 4.
Statement 1: Deforestation results in loss of habitat for many plants and animals.
Statement 2: Pollution is caused by pollutants, which may be solid, liquid, or gaseous in nature.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Question 5.
Statement 1: The three R’s for saving the environment are Reduce, Reuse, and Recycle.
Statement 2: Recycling helps in conserving resources, reducing energy use during manufacture, and reducing pollution levels.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Question 6.
Statement 1: Sustainable development is defined as development that meets the needs of the present without compromising the ability of future generations.
Statement 2: Sustainable agriculture involves using environmentally friendly methods of farming to avoid adverse effects on soil, water, and biodiversity.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Question 7.
Statement 1: The Sustainable Development Goals (SDGs) were launched at the United Nations Sustainable Development Summit in New York in September 2015.
Statement 2: Green growth aims at achieving economic growth that is socially inclusive and environmentally sustainable.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Green Skills Class 9 MCQ Online Test

Question 8.
Statement 1: Conservation is the proper management of a natural resource to prevent its exploitation, destruction, or degradation.
Statement 2: Energy conservation refers to adopting various methods to check soil erosion.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(c) Statement 1 is correct but Statement 2 is incorrect

Question 9.
Statement 1: Reforestation involves planting trees and vegetation to reduce soil erosion.
Statement 2: Green consumer day is celebrated on 29 June of every year.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(c) Statement 1 is correct but Statement 2 is incorrect

Question 10.
Statement 1: Only economy is a part of society.
Statement 2: Constructing dams and reservoirs is essential for the survival of mankind, plants, and animals.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(d) Statement 2 is correct but Statement 1 is incorrect

Assertion and Reason Based Questions

Question 1.
Assertion: Conducting a resource audit is a crucial step in conserving natural resources.
Reason : A resource audit helps examine resource consumption and plan measures to prevent excessive use, promoting efficient and less wasteful utilization.
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of Assertion.
(c) Assertion is true, but Reason is false.
(d) Assertion is false, but Reason is true.
Answer:
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.

Question 2.
Assertion: Soil conservation involves practices such as reforestation and contour ploughing.
Reason : Reforestation and contour ploughing help reduce soil erosion and improve soil fertility.
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of Assertion.
(c) Assertion is true, but Reason is false.
(d) Assertion is false, but Reason is true.
Answer:
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.

Question 3.
Assertion : Green skills are crucial for the transition from an unsustainable to a green economy.
Reason : Green skills contribute to jobs that protect ecosystems, reduce energy consumption, and minimize waste and pollution.
(a) Both Assertion and Reason are true, and Reason is the correct explantion of Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of Assertion.
(c) Assertion is true, but Reason is false.
(d) Assertion is false, but Reason is true.
Answer:
(a) Both Assertion and Reason are true, and Reason is the correct explantion of Assertion.

Green Skills Class 9 MCQ Online Test

Question 4.
Assertion: Overexploitation of natural resources can lead to the extinction of species and disrupt the ecological cycle.
Reason : When harvesting of resources exceeds their reproduction, it affects the natural populations’ ability to recover.
(a) Both Assertion and Reason are true, and Reason is the torrect explanation of Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of Assertion.
(c) Assertion is true, but Reason is false.
(d) Assertion is false, but Reason is true.
Answer:
(a) Both Assertion and Reason are true, and Reason is the torrect explanation of Assertion.

Question 5.
Assertion : Natural disasters such as floods and earthquakes are aggravated by human actions in exploiting natural resources.
Reason: Building structures like large dams and buildings can contribute to the impact of natural calamities.
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of Assertion.
(c) Assertion is true, but Reason is false.
(d) Assertion is false, but Reason is true.
Answer:
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of Assertion.

Question 6.
Assertion : The three Rs – Reduce, Reuse, and Recycle – are principles of modern waste management.
Reason : Implementing the three Rs helps in conserving resources, reducing energy consumption, and minimizing pollution.
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of Assertion.
(c) Assertion is true, but Reason is false.
(d) Assertion is false, but Reason is true.
Answer:
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.

Question 7.
Assertion : Pollution caused by human activities, such as industrial emissions and plastic waste, has harmful effects on the environment.
Reason : Pollutants released into the air, water, and soil have detrimental effects on plants, animals, and human beings.
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.
(b) Both Assertion and Reason are true, but Reason is not % the correct explanation of Assertion.
(c) Assertion is true, but Reason is false.
(d) Assertion is false, but Reason is true.
Answer:
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.

The post Green Skills Class 9 MCQ Online Test appeared first on Learn CBSE.

Data Literacy Class 9 AI MCQ Online Test

$
0
0

Students find these Class 9 AI MCQ Chapter 4 Data Literacy Class 9 MCQ Online Test with Answers helpful for self-assessment and preparation.

Class 9 AI Data Literacy MCQ

MCQ on Data Literacy Class 9

Class 9 Data Literacy MCQ – Data Literacy MCQ Class 9

Multiple Choice Questions

Question 1.
What is data literacy?
(a) The ability to sing and dance with data
(b) The ability to read, understand, create, and communicate data as information
(c) The ability to count numbers accurately
(d) The ability to speak multiple languages fluently
Answer:
(b) The ability to read, understand, create, and communicate data as information

Question 2.
What is the fundamental building block of information?
(a) Wisdom
(b) Knowledge
(c) Data
(d) Information
Answer:
(c) Data

Question 3.
What does the Data Pyramid represent?
(a) The hierarchy of ancient civilizations
(b) Different stages of working with data and transforming it into something meaningful
(c) A mathematical problem-solving technique
(d) A new model of storytelling
Answer:
(b) Different stages of working with data and transforming it into something meaningful

Data Literacy Class 9 AI MCQ Online Test

Question 4.
What is the top level of the Data Pyramid?
(a) Information
(b) Data
(c) Wisdom
(d) Knowledge
Answer:
(c) Wisdom

Question 5.
How can data literacy impact individuals?
(a) By making them forgetful
(b) By empowering them to analyze information and make informed decisions
(c) By limiting their creativity
(d) By reducing their critical thinking abilities
Answer:
(b) By empowering them to analyze information and make informed decisions

Question 6.
What advantage do businesses gain from data literacy?
(a) Increased confusion
(b) Decreased efficiency
(c) Improved innovation and competitive advantage
(d) Reduced customer satisfaction
Answer:
(c) Improved innovation and competitive advantage

Question 7.
Which skill is not involved in becoming data literate?
(a) Data collection and organization
(b) Basic statistics
(c) Data encryption
(d) Data visualization
Answer:
(c) Data encryption

Data Literacy Class 9 AI MCQ Online Test

Question 8.
What does data privacy refer to?
(a) The sharing of personal secrets
(b) The handling of personal information, including who can access it and how it’s used
(c) The government’s control over data
(d) The deletion of personal data
Answer:
(b) The handling of personal information, including who can access it and how it’s used

Question 9.
What does data security aim to protect against?
(a) Unwanted data collection
(b) Unauthorized access, corruption, or theft of digital information
(c) Data deletion
(d) Data miscommunication
Answer:
(b) Unauthorized access, corruption, or theft of digital information

Question 10.
What is a key aspect of data security?
(a) Transparency
(b) Integrity
(c) Accessibility
(d) Redundancy
Answer:
(b) Integrity

Question 11.
What is cyber security primarily concerned with protecting?
(a) Physical assets
(b) Digital information and systems
(c) Financial investments
(d) Environmental resources
Answer:
(b) Digital information and systems

Question 12.
How can individuals prevent malware attacks?
(a) By sharing passwords openly
(b) By clicking on all links in emails
(c) By using reputable antivirus software and being cautious of suspicious links
(d) By ignoring security updates
Answer:
(c) By using reputable antivirus software and being cautious of suspicious links

Question 13.
What is one advantage of data literacy mentioned in the content?
(a) Information overload
(b) Misleading data
(c) Smarter decisions
(d) Lack of tech savvy
Answer:
(c) Smarter decisions

Data Literacy Class 9 AI MCQ Online Test

Question 14.
In which field is data literacy not important?
(a) Business
(b) Education
(c) Fashion design
(d) Healthcare
Answer:
(c) Fashion design

Question 15.
What can data literacy empower individuals to do in their personal lives?
(a) Track finances and monitor health
(b) Become less responsible
(c) Rely solely on evidence for decision-making
(d) Ignore data completely
Answer:
(c) Rely solely on evidence for decision-making

Question 16.
What type of data is represented by words, sentences, or paragraphs?
(a) Discrete Data
(b) Continuous Data
(c) Textual Data
(d) Numerical Data
Answer:
(c) Textual Data

Question 17.
Which of the following is an example of discrete data?
(a) Temperature
(b) Height
(c) Number of books on a shelf
(d) Weight
Answer:
(c) Number of books on a shelf

Question 18.
Which domain of AI primarily uses text data for its tasks?
(a) Computer Vision (CV)
(b) Natural Language Processing (NLP)
(c) Statistical Data
(d) Reinforcement Learning
Answer:
(b) Natural Language Processing (NLP)

Question 19.
What is the purpose of data augmentation in Al?
(a) To delete unnecessary data
(b) To increase the diversity and quantity of training data
(c) To measure the accuracy of data
(d) To store data in a database
Answer:
(b) To increase the diversity and quantity of training data

Data Literacy Class 9 AI MCQ Online Test

Question 20.
Which method involves collecting data by observing people’s behaviour or the natural world?
(a) Surveys
(b) Interviews
(c) Experiments
(d) Observations
Answer:
(d) Observations

Question 21.
What type of data includes information like gender, favourite colour, and movie genre?
(a) Quantitative Data
(b) Numerical Data
(c) Discrete Data
(d) Qualitative Data
Answer:
(d) Qualitative Data

Question 22.
Which of the following is a primary source of data?
(a) Government publications
(b) Research reports
(c) Surveys
(d) Books and articles
Answer:
(c) Surveys

Question 23.
What is web scraping used for in data acquisition?
(a) To clean data
(b) To automate the process of gathering data from websites
(c) To structure data
(d) To generate synthetic data
Answer:
(b) To automate the process of gathering data from websites

Question 24.
Which factor determines how well data reflects real-world values?
(a) Structure
(b) Cleanliness
(c) Accuracy
(d) Format
Answer:
(c) Accuracy

Question 25.
In a machine learning model to predict house prices, what would be considered an independent feature?
(a) Sale price of the house
(b) Number of bedrooms
(c) Location
(d) Both (b) and (c)
Answer:
(d) Both (b) and (c)

Data Literacy Class 9 AI MCQ Online Test

Question 26.
What does data discovery involve in the context of data acquisition for Al models?
(a) Generating new data points
(b) Identifying and obtaining relevant datasets
(c) Augmenting existing data
(d) Cleaning and structuring data
Answer:
(b) Identifying and obtaining relevant datasets

Question 27.
Which of the following is NOT an example of quantitative data?
(a) Temperature
(b) Customer satisfaction
(c) Sales figures
(d) Shoe size
Answer:
(b) Customer satisfaction

Question 28.
What technique can create new versions of existing audio recordings by modifying parameters like pitch or speed?
(a) Data discovery
(b) Data cleaning
(c) Data generation
(d) Data augmentation
Answer:
(d) Data augmentation

Question 29.
Which type of data can take on any value within a given range and often arises from measurement?
(a) Discrete Data
(b) Continuous Data
(c) Textual Data
(d) Qualitative Data
Answer:
(b) Continuous Data

Question 30.
What is the primary goal of data used in the field of Computer Vision (CV)?
(a) To interpret and understand text data
(b) To extract meaningful information from images and videos
(c) To analyze numerical and categorical data
(d) To generate synthetic data
Answer:
(b) To extract meaningful information from images and videos

Data Literacy Class 9 AI MCQ Online Test

Question 31.
What is the primary objective of data processing?
(a) Converting raw data into usable information
(b) Collecting as much raw data as possible
(c) Storing raw data for future reference
(d) Filtering out irrelevant information
Answer:
(a) Converting raw data into usable information

Question 32.
Which step of the data processing cycle involves checking for errors, duplication, and missing data?
(a) Collection
(b) Preparation
(c) Input
(d) Data Processing
Answer:
(b) Preparation

Question 33.
What is the purpose of the “Input” step in the data processing cycle?
(a) To analyze the data using statistical methods
(b) To convert raw data into machine-readable form
(c) To filter out unnecessary data
(d) To present data in a readable format
Answer:
(c) To filter out unnecessary data

Question 34.
Which type of data interpretation focuses on understanding experiences, opinions, and reasons?
(a) Quantitative Interpretation
(b) Statistical Interpretation
(c) Qualitative Interpretation
(d) Correlation Interpretation
Answer:
(d) Correlation Interpretation

Data Literacy Class 9 AI MCQ Online Test

Question 35.
What is the main advantage of data visualization?
(a) Making complex data more difficult to understand
(b) Concealing trends and outliers in data
(c) Identifying biased or inaccurate information
(d) Presenting inforntation in a clearer and more understandable way
Answer:
(c) Identifying biased or inaccurate information

Question 36.
Which tool is commonly used for data visualization and business intelligence?
(a) Microsoft Word
(b) Adobe Photoshop
(c) Tableau
(d) Google Sheets
Answer:
(c) Tableau

Question 37.
What is the primary function of Tableau?
(a) Creating interactive charts and dashboards
(b) Editing videos
(c) Writing code
(d) Sending emails
Answer:
(a) Creating interactive charts and dashboards

Question 38.
How can Tableau be obtained for use?
(a) By purchasing it from a retail store
(b) By downloading it from the official website
(c) By subscribing to a streaming service
(d) By borrowing it from a friend
Answer:
(b) By downloading it from the official website

Statement Based Questions.

Question 1.
Statement 1 Data literacy involves the ability to read, understand, create, and communicate data as information.
Statement 2 Data literacy only refers to the skills needed to interpret numerical data.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(c) Statement 1 is correct but Statement 2 is incorrect

Data Literacy Class 9 AI MCQ Online Test

Question 2.
Statement 1 The DIKW pyramid represents the stages of transforming data into information, knowledge, and wisdom.
Statement 2 In the data pyramid, knowledge is the second stage.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Question 3.
Statement 1 Data literacy helps individuals make more informed decisions in personal and professional life.
Statement 2 Data literacy only benefits businesses and has no impact on society.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(d) Statement 2 is correct but Statement 1 is incorrect

Question 4.
Statement 1 Data privacy refers to your right to control your personal information, including who can access it and how it’s used.
Statement 2 Data privacy is important for individuals, businesses and organizations.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Question 6.
Statement 1: Textual data consists of numbers.
Statement 2: Textual data can be categorized based on attributes or qualities.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(d) Statement 2 is correct but Statement 1 is incorrect

Question 7.
Statement 1: Data discovery involves creating new data points to simulate real-world data.
Statement 2: Data augmentation increases the diversity and quantity of training data without collecting new data.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(d) Statement 2 is correct but Statement 1 is incorrect

Data Literacy Class 9 AI MCQ Online Test

Question 8.
Statement 1: Web scraping involves defining the data to be collected and understanding the HTML structure of the target website.
Statement 2: The extracted data from web scraping cannot be saved in formats other than CSV.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(c) Statement 1 is correct but Statement 2 is incorrect

Question 9.
Statement 1: Primary data is collected firsthand by the researcher for the specific purpose of their study.
Statement 2: Surveys, interviews, experiments, and observations are common methods of collecting primary data.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Question 10.
Statement 1: Structure refers to how data is organized and stored, impacting its efficiency in storage and processing.
Statement 2: Clean data is free from duplicates, missing values, and outliers, ensuring its reliability and usefulness for analysis.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Assertion & Reason Based Questions

Question 1.
Assertion Data literacy is crucial for individuals to make informed decisions.
Reason Data literacy Involves only the ability to read and write numerical data.
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of Assertion.
(c) Assertion is true, but Reason is false.
(d) Assertion is false, but Reason is true.
Answer:
(c) Assertion is true, but Reason is false.

Data Literacy Class 9 AI MCQ Online Test

Question 2.
Assertion The top level of the DIKW pyramid is wisdom.
Reason Wisdom in the DIKW pyramid is achieved by organizing and processing raw data into information.
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of Assertion.
(c) Assertion is true, but Reason is false.
(d) Assertion is false, but Reason is true.
Answer:
(c) Assertion is true, but Reason is false.

Question 3.
Assertion Data privacy helps to protect individuals’ personal information from unauthorized access. Reason Data privacy ensures that only authorized people can access, modify, and use personal data.
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of Assertion.
(c) Assertion is true, but Reason is false.
(d) Assertion is false, but Reason is true.
Answer:
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.

Question 5.
Assertion: Data processing is essential for organizations to create better business strategies and increase their competitive edge.
Reason: Data processing involves converting raw data into usable information through various steps like collection, preparation, input, and processing.
(a) Both assertion and reason are true, and the reason is the correct, explanation of the assertion.
(b) Both assertion and reason are true, but the reason is not the correct explanation of the assertion.
(c) Assertion is true, but the reason is false.
(d) Assertion is false, but the reason is true.
Answer:
(a) Both assertion and reason are true, and the reason is the correct, explanation of the assertion.

Question 6.
Assertion: Data interpretation methods include qualitative and quantitative approaches.
Reason: Qualitative data interpretation focuses on non-numerical data, while quantitative data interpretation deals with numerical data.
(a) Both assertion and reason are true, and the reason is the correct explanation of the assertion.
(b) Both assertion and reason are true, but the reason is not the correct explanation of the assertion.
(c) Assertion is true, but the reason is false.
(d) Assertion is false, but the reason is true.
Answer:
(a) Both assertion and reason are true, and the reason is the correct explanation of the assertion.

Question 7.
Assertion: Data visualization helps in making complex data understandable by presenting it in visual formats like charts and graphs.
Reason: Visualizations like charts, graphs, and maps present data in a way that’s easier to interpret, allowing for the identification of patterns and trends.
(a) Both assertion and reason are true, and the reason is the correct explanation of the assertion.
(b) Both assertion and reason are true, but the reason is not the correct explanation of the assertion.
(c) Assertion is true, but the reason is false.
(d) Assertion is false, but the reason is true.
Answer:
(a) Both assertion and reason are true, and the reason is the correct explanation of the assertion.

Data Literacy Class 9 AI MCQ Online Test

Question 8.
Assertion: Tableau is a powerful tool for data visualization and business intelligence.
Reason: Tableau allows users to create interactive charts, graphs, maps, and dashboards to explore and understand data easily.
(a) Both assertion and reason are true, and the reason is the correct explanation of the assertion.
(b) Both assertion and reason are true, but the reason is not the correct explanation of the assertion.
(c) Assertion is true, but the reason is false.
(d) Assertion is false, but the reason is true.
Answer:
(a) Both assertion and reason are true, and the reason is the correct explanation of the assertion.

The post Data Literacy Class 9 AI MCQ Online Test appeared first on Learn CBSE.


Math for AI Class 9 MCQ Online Test

$
0
0

Students find these Class 9 AI MCQ Chapter 5 Math for AI Class 9 MCQ Online Test with Answers helpful for self-assessment and preparation.

Class 9 Math for AI MCQ

MCQ on Math for AI Class 9

Class 9 Math for AI MCQ – Math for AI MCQ Class 9

Multiple Choice Questions

Question 1.
What is the primary role of statistics in artificial intelligence?
(a) To write code for AI algorithms
(b) To clean and prepare data for AI models
(c) To design user interfaces for AI applications
(d) To optimize hardware for AI processing
Answer:
(b) To clean and prepare data for AI models

Question 2.
Which branch of mathematics is essential for optimizing the parameters of AI models?
(a) Algebra
(b) Geometry
(c) Calculus
(d) Trigonometry
Answer:
(c) Calculus

Question 3.
What mathematicaltechnique is commonly used to adjust the parameters of AI models to minimize errors?
(a) Regression analysis
(b) Gradient descent
(c) Matrix factorization
(d) Monte Carlo simulation
Answer:
(b) Gradient descent

Question 4.
Which measure of central tendency is the most common and is calculated as the sum of all values divided by the number of values?
(a) Mode
(b) Median
(c) Mean
(d) Range
Answer:
(c) Mean

Question 5.
In a data set {2,3,11,13,26,34,47}, what is the median value?
(a) 11
(b) 13
(c) 26
(d) 34
Answer:
(b) 13

Question 6.
What is the mode in the data set {3,3,6,9,16,16, 16, 27, 27, 37, 48)?
(a) 3
(b) 16
(c) 27
(d) 48
Answer:
(b) 16

Question 7.
How is variance calculated in a data set?
(a) By taking the sum of the data points
(b) By calculating the average of the data points
(c) By finding the average squared deviation from the mean
(d) By dividing the sum of the squares by the number of values
Answer:
(c) By finding the average squared deviation from the mean

Question 8.
Which field uses statistical analysis to evaluate player performance and predict game outcomes?
(a) Finance
(b) Marketing
(c) Sports
(d) Education
Answer:
(c) Sports

Question 9.
Which statistical measure is the square root of the variance?
(a) Mean
(b) Mode
(c) Standard deviation
(d) Median
Answer:
(c) Standard deviation

Question 10.
In machine learning, what role does probability theory play?
(a) It helps design user interfaces for AI applications
(b) It models uncertainty in data and makes predictions
(c) It optimizes hardware for AI processing
(d) It writes code for AI algorithms
Answer:
(b) It models uncertainty in data and makes predictions

Question 11.
What is the function of linear algebra in Al?
(a) Training AI models
(b) Summarizing data
(c) Representing and manipulating data
(d) Predicting future events
Answer:
(c) Representing and manipulating data

Question 12.
What is one of the activities involved in the field of statistics?
(a) Conducting a survey
(b) Writing AI algorithms
(c) Designing hardware for AI
(d) Developing user interfaces
Answer:
(a) Conducting a survey

Question 13.
Which application of statistics helps in predicting disease outbreaks and allocating healthcare resources?
(a) Disaster management
(b) Disease prediction
(c) Weather forecast
(d) Business analysis
Answer:
(b) Disease prediction

Question 14.
How does Al use calculus to improve its models?
(a) By analyzing and summarizing data
(b) By training and optimizing the models
(c) By representing data in vectors and matrices
(d) By predicting different outcomes
Answer:
(b) By training and optimizing the models

Question 15.
What does the term “bimodal” mean in statistics?
(a) A dataset with no modes
(b) A dataset with one mode
(c) A dataset with two modes
(d) A dataset with multiple modes
Answer:
(c) A dataset with two modes

Statement Based Questions

Question 1.
Statement 1: Probability helps Al systems to reason under uncertainty and make optimal choices.
Statement 2: Statistics is used to extract meaningful insights and identify patterns in data for AI.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Question 2.
Statement 1: Linear algebra is used to represent data in a way that AI models can understand and manipulate.
Statement 2: Calculus is used in AI for predicting different events.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(c) Statement 1 is correct but Statement 2 is incorrect

Question 3.
Statement 1: Standard deviation measures the average squared deviation from the mean.
Statement 2: Median is the middle value in a data set when the data is ordered from least to greatest.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(d) Statement 2 is correct but Statement 1 is incorrect

Question 4.
Statement 1: Probability is a measure of how likely an event is to happen, expressed as a number between 0 and 1.
Statement 2: The sum of probabilities of all possible outcomes of a chance event is always equal to 1.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Question 5.
Statement 1: Weather forecasting relies on probability to predict future weather conditions based on historical data and current atmospheric conditions.
Statement 2: In sports, probability is used to calculate the likelihood of a specific outcome, such as a player hitting a home run in baseball.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Assertion & Reason Based Questions

Question 1.
Assertion: Statistics is a crucial tool for Al because it helps in preparing data for learning by identifying outliers and choosing relevant features.
Reason: Statistical techniques enable the cleaning of data, which leads to more accurate and efficient learning in Al systems.
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of Assertion.
(c) Assertion is true, but Reason is false.
(d) Assertion is false, but Reason is true.
Answer:
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.

Question 2.
Assertion: Calculus is essential in Al for optimizing the performance of models by adjusting parameters using techniques like gradient descent.
Reason: Calculus provides tools to represent and manipulate data in Al systems effectively.
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of Assertion.
(c) Assertion is true, but Reason is false.
(d) Assertion is false, but Reason is true.
Answer:
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.

Question 3.
Assertion: Standard deviation is a measure of how spread out data points are from the mean and is expressed in the same units as the original data.
Reason: Variance is the square root of the standard deviation.
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of Assertion.
(c) Assertion is true, but Reason is false.
(d) Assertion is false, but Reason is true.
Answer:
(c) Assertion is true, but Reason is false.

Question 4.
Assertion : Probability theory is crucial in Al for modeling uncertainty in data and making informed decisions under certain conditions.
Reason: In facial recognition technology, Al uses probability theory to precisely identify features like the shape of a nose or the distance between eyes.
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of Assertion.
(c) Assertion is true, but Reason is false.
(d) Assertion is false, but Reason is true.
Answer:
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.

The post Math for AI Class 9 MCQ Online Test appeared first on Learn CBSE.

AI Ethics Class 9 MCQ Online Test

$
0
0

Students find these Class 9 AI MCQ Chapter 3 AI Ethics Class 9 MCQ Online Test with Answers helpful for self-assessment and preparation.

Class 9 AI Ethics MCQ

MCQ on AI Ethics Class 9

Class 9 AI Ethics MCQ – AI Ethics MCQ Class 9

Multiple Choice Questions

Question 1.
What is ethics?
(a) A set of rules for programming AI
(b) A set of principles guiding behaviour and decisions
(c) The study of robotics
(d) A programming language
Answer:
(b) A set of principles guiding behaviour and decisions

Question 2.
Why is ethics important in the context of AI?
(a) It ensures AI systems are AIways correct
(b) It prevents the development of AI technologies
(c) It addresses concerns about fairness, safety, and privacy
(d) It only focuses on maximizing profit
Answer:
(c) It addresses concerns about fairness, safety, and privacy

Question 3.
What does AI bias refer to?
(a) A positive trait of AI systems
(b) Unfairly favoring or discriminating against certain groups of people
(c) A programming error in AI AIgorithms
(d) The speed at which AI makes decisions
Answer:
(b) Unfairly favoring or discriminating against certain groups of people

AI Ethics Class 9 MCQ Online Test

Question 4.
How can AI bias be mitigated according to the provided information?
(a) By reducing the diversity of training data.
(b) By designing AIgorithms without considering fairness.
(c) By regularly auditing AI systems.
(d) By excluding diverse perspectives from development teams.
Answer:
(c) By regularly auditing AI systems.

Question 5.
What does EthicAI AI prioritize in terms of sociAI well-being?
(a) Serving the interests of corporations.
(b) Working for the benefit of mankind.
(c) Maximizing individuAI profits.
(d) Focusing solely on technologicAI advancement.
Answer:
(b) Working for the benefit of mankind.

Question 6.
Which principle of EthicAI AI ensures transparency and accountability?
(a) SociAI Well-being
(b) Avoiding Unfair Bias
(c) Transparency and Explainability
(d) VAIue AIignment
Answer:
(c) Transparency and Explainability

Question 7.
In the context of AI ethics, what are the key aspects covered under the term “Fairness”?
I. Treating everyone equAIly
II. Favoring specific groups
III. Considering historicAI biases
IV. Ensuring equAI distribution of resources
(a) Both I and III
(b) Only II
(c) Both I and IV
(d) Only III
Answer:
(c) Both I and IV

AI Ethics Class 9 MCQ Online Test

Question 8.
Which of the following is a major factor contributing to bias in AI systems?
(a) Overfitting to the training data
(b) The use of neurAI networks
(c) Human biases embedded in the training data
(d) High computationAI power
Answer:
(c) Human biases embedded in the training data

Question 9.
How does ethicAI AI contribute to a better future for AI ?
I. By setting regulations to reduce risks such as mass surveillance
II. By promoting exclusive profit generation
III. By prioritizing human rights violations
IV. By ensuring systems are transparent and explainable
(a) Both I and IV
(b) I, III, and IV
(c) Both II and IV
(d) AIl of the above
Answer:
(a) Both I and IV

Question 10.
How can the negative impact of job displacement due to AI automation be mitigated?
(a) Ignoring the impact on jobs
(b) Focusing on reskilling and upskilling workers
(c) Increasing automation without considering consequences
(d) Limiting the development of AI technologies
Answer:
(b) Focusing on reskilling and upskilling workers

Question 11.
A tech company developed an AI system for processing job applications. However, it was found that the system consistently rejected applications from candidates with certain ethnic backgrounds. Which AI ethics principle is violated in this scenario?
(a) Trust, Privacy and Control
(b) Bias and Fairness
(c) Accountability
(d) Transparency
Answer:
(b) Bias and Fairness

AI Ethics Class 9 MCQ Online Test

Question 12.
A new AI-driven medicAI diagnosis system was introduced in a hospitAI. After a few months, it was discovered that the system occasionAIly provided incorrect diagnoses without any clear explanation. What AI ethicAI issue is highlighted in this situation?
(a) Human rights and AI
(b) Accountability
(c) Unbiased
(d) Human-AI interaction
Answer:
(b) Accountability

Question 13.
What is the primary concern regarding the use of AI in autonomous weapons systems?
(a) They can be easily hacked and controlled by adversaries
(b) They lack the ability to make ethicAI decisions in warfare situations
(c) They have the potentiAI to cause unintended harm and escAIate conflicts
(d) They are prohibitively expensive to develop and maintain
Answer:
(c) They have the potentiAI to cause unintended harm and escAIate conflicts

Question 14.
What is the main ethicAI concern related to the use of AI in employment and workforce management?
(a) The potentiAI loss of jobs due to automation and displacement of human workers
(b) The unequAI distribution of weAIth and resources resulting from AI-driven economic changes
(c) The invasion of privacy through constant monitoring and surveillance of employees
(d) The risk of AI systems making biased or discriminatory hiring decisions
Answer:
(d) The risk of AI systems making biased or discriminatory hiring decisions

Question 15.
Which of the following is not a potentiAI consequence of widespread job automation by AI?
(a) Increased unemployment and economic inequAIity
(b) Greater job satisfaction and work-life bAIance for workers
(c) Displacement of certain industries and professions
(d) Shift in the nature of work towards more creative and human-centric tasks
Answer:
(b) Greater job satisfaction and work-life bAIance for workers

Question 16.
Which ethicAI principle emphasizes the importance of ensuring that AI systems treat AIl individuAIs fairly and without bias?
(a) Autonomy
(b) Beneficence
(c) Justice
(d) Non-mAIeficence
Answer:
(c) Justice

AI Ethics Class 9 MCQ Online Test

Question 17.
How car’AI be used to promote sociAI good?
(a) By developing AI systems that prioritize profit overethicAI considerations
(b) By creating AI AIgorithms that perpetuate bias and discrimination
(c) By using AI to address societAI chAIlenges such as heAIthcare and poverty
(d) By limiting access to AI technology to only certain groups of people
Answer:
(c) By using AI to address societAI chAIlenges such as heAIthcare and poverty

Question 18.
What is the purpose of AI transparency?
(a) To ensure AI systems are kept secret from the public
(b) To provide explanations for how AI systems make decisions
(c) To increase the complexity of AI AIgorithms
(d) To eliminate bias from AI systems
Answer:
(b) To provide explanations for how AI systems make decisions

Question 19.
What role does public policy play in AI ethics?
(a) Public policy has no impact on AI ethics
(b) Public policy can help regulate the development and use of AI systems
(c) Public policy is solely concerned with maximizing profits for AI companies
(d) Public policy focuses on eliminating AIl AI technologies
Answer:
(b) Public policy can help regulate the development and use of AI systems

Question 20.
Which of the following is not a potentiAI ethicAI concern related to AI ?
(a) Bias in AIgorithms leading to discriminatory outcomes
(b) Loss of human jobs due to automation
(c) Privacy violations through mass surveillance
(d) Advancements in medicAI research and treatment options
Answer:
(d) Advancements in medicAI research and treatment options

Statement Based Questions

Question 1.
Statement 1 AI ethics involves considering principles like fairness, transparency, and accountability.
Statement 2 Privacy is one of the ethicAI issues related to AI , ensuring personAI information is handled carefully.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

AI Ethics Class 9 MCQ Online Test

Question 2.
Statement 1 Bias in AI can occur when AI systems inherit biases present in the data they are trained on.
Statement 2 In 2018, Amazon abandoned an AI recruitment tool found to be biased against mAIe candidates.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(c) Statement 1 is correct but Statement 2 is incorrect

Question 3.
Statement 1 Transparency in AI refers to the chAIlenge of understanding how AI AIgorithms arrive at their decisions.
Statement 2 The lack of transparency in AI AIgorithms can hinder accountability and raise concerns about potentiAI misuse.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Question 4.
Statement 1 Ethics is a set of principles guiding people’s behaviour and decisions about what is right and wrong.
Statement 2 AI and ethics are closely connected because AI systems are designed to make decisions just like humans do.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Assertion & Reason Based Questions

Question 1.
Assertion Ethics plays a cruciAI role in guiding individuAIs’ behaviour and decision-making, considering principles of fairness, justice, and morAI acceptability.
Reason Ethics provides a set of principles or standards that help individuAIs determine what is right or wrong in various situations, influencing how people interact with others, make choices, and AIign their actions with societAI vAIues.
(a) Both Assertion and Reason are true, and Reason is the correct explanation of the Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of the Assertion.
(c) Assertion is true, but Reason is fAIse.
(d) Assertion is fAIse, but Reason is true.
Answer:
(a) Both Assertion and Reason are true, and Reason is the correct explanation of the Assertion.

Question 2.
Assertion The lack of transparency in AI AIgorithms can hinder accountability and lead to concerns about potentiAI misuse.
Reason Many AI AIgorithms operate as black boxes, making it chAIlenging to understand how they arrive at their decisions, which can impact trust in their outcomes.
(a) Both Assertion and Reason are true, and Reason is the correct explanation of the Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of the Assertion.
(c) Assertion is true, but Reason is fAIse.
(d) Assertion is fAIse, but Reason is true.
Answer:
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of the Assertion.

AI Ethics Class 9 MCQ Online Test

Question 3.
Assertion Inclusive development teams contribute to reducing unintentionAI biases in AI systems.
Reason Diverse backgrounds and perspectives within development teams help ensure a more comprehensive and fair approach.
(a) Both Assertion and Reason are true, and Reason is the correct explanation of the Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of the Assertion.
(c) Assertion is true, but Reason is fAIse.
(d) Assertion is fAIse, but Reason is true.
Answer:
(a) Both Assertion and Reason are true, and Reason is the correct explanation of the Assertion.

Question 4.
Assertion AI bias can occur due to blases present in training data, AIgorithmic development, and feedback loops.
Reason Training data bias influences how AI systems learn, AIgorithmic bias results from design choices, and feedback loops reinforce biases through continuous learning.
(a) Both Assertion and Reason are true, and Reason is the correct explanation of the Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of the Assertion.
(c) Assertion is true, but Reason is fAIse.
(d) Assertion is fAIse, but Reason is true.
Answer:
(a) Both Assertion and Reason are true, and Reason is the correct explanation of the Assertion.

Question 5.
Assertion Diverse training data is cruciAI in mitigating AI bias.
Reason A robot trained on limited data may develop biased perceptions, leading to unfair decisions.
(a) Both Assertion and Reason are true, and Reason is the correct explanation of the Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of the Assertion.
(c) Assertion is true, but Reason is fAIse.
(d) Assertion is fAIse, but Reason is true.
Answer:
(a) Both Assertion and Reason are true, and Reason is the correct explanation of the Assertion.

The post AI Ethics Class 9 MCQ Online Test appeared first on Learn CBSE.

AI Project Cycle Class 9 MCQ Online Test

$
0
0

Students find these Class 9 AI MCQ Chapter 2 AI Project Cycle Class 9 MCQ Online Test with Answers helpful for self-assessment and preparation.

Class 9 AI Project Cycle MCQ

MCQ on AI Project Cycle Class 9

Class 9 AI Project Cycle MCQ – AI Project Cycle MCQ Class 9

Multiple Choice Questions

Question 1.
The AI Project Cycle is a …….. that uses scientific methods to solve problems and draw conclusions.
(a) Step-by-step process
(b) Random process
(c) Reverse process
(d) None of these
Answer:
(a) Step-by-step process

Question 2.
The stages of the AI project cycle are
(a) Problem Scoping & Data Acquisition
(b) Data Exploration & Modelling
(c) Evaluation
(d) All of the above
Answer:
(d) All of the above

Question 3.
In. ………. we need to address the problem and what the advantages will be for the stakeholders once the problem is solved.
(a) Who
(b) What
(c) Where
(d) Why
Answer:
(d) Why

AI Project Cycle Class 9 MCQ Online Test

Question 4.
Summarizes all of the important points in one place.
(a) Problem statement template
(b) Problem statement document
(c) Problem statement file
(d) None of the above
Answer:
(a) Problem statement template

Question 5.
The method of collecting correct and dependable data to work with is known as ……… .
(a) Problem Scoping
(b) Data Acquisition
(c) Data Exploration
(d) Modelling
Answer:
(b) Data Acquisition

Question 6.
When you explore the data and try to put it uniformly for a better understanding. It is called. ………. .
(a) Data acquisition
(b) Problem scoping
(c) Data exploration
(d) Modelling
Answer:
(c) Data exploration

Question 7.
Refers to developing algorithms, also called models which can be trained to get intelligent.
(a) Data acquisition
(b) Problem scoping
(c) Data exploration
(d) Modelling
Answer:
(d) Modelling

Question 8.
………… element helps us to understand and categorize who is directly and indirectly affected by the problem.
(a) Who
(b) What
(c) Where
(d) Why
Answer:
(a) Who

Question 9.
…………. section aids us in analyzing and recognizing the nature of the problem.
(a) Who
(b) What
(c) Where
(d) Why
Answer:
(b) What

AI Project Cycle Class 9 MCQ Online Test

Question 10.
What does data acquisition involve in the AI Project Cycle?
(a) Analyzing data patterns
(b) Collecting relevant data for the project
(c) Implementing machine learning algorithms
(d) Generating predictions without data
Answer:
(b) Collecting relevant data for the project

Question 11.
What is the primary purpose of extracting data features in the context of an Al project?
(a) To confuse the machine learning algorithm
(b) To visualize factors affecting the problem statement
(c) To make the project conflict with other AI projects
(d) To acquire irrelevant data
Answer:
(b) To visualize factors affecting the problem statement

Question 12.
Which of the following is mentioned as a reliable source for authentic information in data acquisition?
(a) Random internet websites
(b) Private databases without proper sources
(c) Government-hosted open-access websites
(d) Social media platforms
Answer:
(c) Government-hosted open-access websites

Question 13.
Data Acquisition involves acquiring $\qquad$ for the project.
(a) Computers
(b) Data
(c) Software
(d) Servers
Answer:
(b) Data

Question 14.
In an Al project, historical salary information used for training is termed as ………. .
(a) Testing data
(b) Prediction data
(c) Training data
(d) Acquired data
Answer:
(c) Training data

AI Project Cycle Class 9 MCQ Online Test

Question 15.
Which of the following is a method to collect data?
(a) Observations
(b) Web scraping
(c) Sensors
(d) All of these
Answer:
(d) All of these

Question 16.
What does API stand for?
(a) Advanced Programming Interface
(b) Application Programming Interface
(c) Algorithmic Protocol Integration
(d) Automated Processing Interface
Answer:
(b) Application Programming Interface

Question 17.
System map in Al is primarily used to:
(a) Visualize the timeline of an AI project
(b) Identify and illustrate the components and relationships within an AI system
(c) Display’statistical data
(d) Track the financial expenses of an AI project
Answer:
(c) Display’statistical data

Question 18.
What is the primary objective of data exploration?
(a) Analyzing data
(b) Visualizing data
(c) Understanding data
(d) Extracting insights
Answer:
(c) Understanding data

AI Project Cycle Class 9 MCQ Online Test

Question 19.
What is the purpose of data visualization in data analysis?
(a) To complicate data interpretation
(b) To obscure trends and patterns
(c) To simplify data understanding
(d) To hinder communication of insights
Answer:
(c) To simplify data understanding

Question 20.
Which data visualization technique is best suited for illustrating proportions or part-to-whole comparisons?
(a) Bar Chart
(b) Scatter Plot
(c) Pie Chart
(d) Histogram
Answer:
(c) Pie Chart

Question 21.
What is the drawback of using a pie chart for complex data sets?
(a) Inability to displafy trends
(b) Lack of clarity
(c) Difficulty in interpretation
(d) Limited use of color
Answer:
(b) Lack of clarity

Question 22.
What is the main advantage of using a scatter plot?
(a) Illustrating proportions
(b) Displaying part-to-whole comparisons
(c) Identifying trends or correlations
(d) Showing time-related information
Answer:
(c) Identifying trends or correlations

Question 23.
Which of the following is a key benefit of using a system map in Al?
(a) Simplifies complex processes and helps in understanding relationships
(b) Provides detailed project timelines
(c) Highlights individual performance metrics
(d) Outlines the financial budget of an AI project
Answer:
(a) Simplifies complex processes and helps in understanding relationships

AI Project Cycle Class 9 MCQ Online Test

Question 24.
Which stage of the AI project cycle involves gathering and filtering data from various sources?
(a) Data Exploration
(b) Data Visualization
(c) Data Acquisition
(d) Data Analysis
Answer:
(c) Data Acquisition

Question 25.
Which visualization technique is best suited for illustrating the frequency of a particular occurrence?
(a) Scatter Plot
(b) Choropleth Map
(c) Word Cloud
(d) Histogram
Answer:
(d) Histogram

Statement Based Questions

Question 1.
Statement 1 The “Who” block helps analyze people directly or indirectly affected by the problem.
Statement 2 The “What” block focuses on identifying the context or situation of the problem.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 2 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Question 2.
Statement 1 The phases of the AI project cycle include Data Exploration.
Statement 2 The initial steps of requirement gathering, planning, and designing in a project cycle may vary in order depending on the project.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

AI Project Cycle Class 9 MCQ Online Test

Question 3.
Statement 1 Evaluation is the first stage of the AI project cycle.
Statement 2 Precision in the evaluation phase measures how well the model avoids false alarms.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(d) Statement 2 is correct but Statement 1 is incorrect

Question 4.
Statement 1 Good quality training data is crucial for the performance of a machine learning model.
Statement 2 Testing data should have the same distribution of features as the actual dataset.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Question 5.
Statement 1 Observations can be a time-consuming data source.
Statement 2 Sensors are part of loT and collect physical data.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Question 6.
Statement 1 The data with which the machine can be trained is the testing data.
Statement 2 The data with which the model is evaluated is the training data.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incolrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(b) Both Statement 1 and Statement 2 are incorrect

Question 7.
Statement 1 Data visualization helps in spotting trends and patterns in the data.
Statement 2 Data visualization reduces the complexity of data.
(a) Both Statement 1 and Statement 1 are correct
(b) Both Statement 1 and Statement 1 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 1 are correct

Assertion and Reason Based Questions

Question 1.
Assertion Problem Identification is the first step in the AI project cycle.
Reason A well-defined problem statement helps in focusing on the root cause of the problem and avoids unnecessary details or assumptions.
(a) Both Assertion and Reason are true, and Reason is the correct explanatioh of Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of Assertion.
(c) Assertion is true, but Reason is false.
(d) Both Assertion and Reason are false.
Answer:
(a) Both Assertion and Reason are true, and Reason is the correct explanatioh of Assertion.

AI Project Cycle Class 9 MCQ Online Test

Question 2.
Assertion Data Acquisition is a crucial stage in the AI project cycle as it involves gathering relevant information for the project.
Reason Data Acquisition involves acquiring raw facts, figures, or statistics necessary for training AI systems.
(a) Both assertion and reason are true, and the reason is the cortect explanation of the assertion.
(b) Both assertion and reason are true, but the reason is not the correct explanation of the assertion.
(c) Assertion is true, but the reason is false.
(d) Assertion is false, but the reason is true.
Answer:
(a) Both assertion and reason are true, and the reason is the cortect explanation of the assertion.

Question 3.
Assertion Testing data should be new and unseen to ensure the model’s ability to generalize to different scenarios.
Reason The testing data quality is essential for the machine learning model’s performance.
(a) Both Assertion and Reason are true, and the Reason is the correct explanation for the Assertion.
(b) Both Assertion and Reason are true, but the Reason is not the correct explanation for the Assertion.
(c) Assertion is true, but the Reason is false.
(d) Assertion is false, but the Reason is true.
Answer:
(a) Both Assertion and Reason are true, and the Reason is the correct explanation for the Assertion.

Question 4.
Assertion Data visualization in data exploration leverages familiar visual cues such as shapes, dimensions, colors, lines, points, and angles.
Reason Humans process visual data better than numerical data, making it challenging for data scientists to communicate meaning without visual components.
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of Assertion.
(c) Assertion is true, but Reason is false.
(d) Assertion is false, but Reason is true.
Answer:
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.

AI Project Cycle Class 9 MCQ Online Test

Question 5.
Assertion Bar charts are an effective method for data visualization when comparing categories and measured values.
Reason Bar charts can become problematic when there are too many categories included and may oversimplify complex data sets.
(a) Both Assertion and Reason are true, and Reason is the correct explanation of Assertion.
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of Assertion.
(c) Assertion is true, but Reason is false.
(d) Assertion is false, but Reason is true.
Answer:
(b) Both Assertion and Reason are true, but Reason is not the correct explanation of Assertion.

The post AI Project Cycle Class 9 MCQ Online Test appeared first on Learn CBSE.

Introduction to AI Class 9 MCQ Online Test

$
0
0

Students find these Class 9 AI MCQ Chapter 1 Introduction to AI Class 9 MCQ Online Test with Answers helpful for self-assessment and preparation.

Class 9 Introduction to AI MCQ

MCQ on Introduction to AI Class 9

Class 9 Introduction to AI MCQ – Introduction to AI MCQ Class 9

Multiple Choice Questions

Question 1.
Which of the following intelligence types have been implemented through Artificial Intelligence?
(a) Ability to use language for conversing
(b) Ability to recognise objects
(c) Ability to learn from experience
(d) All of the above
Answer:
(d) All of the above

Question 2.
When was the term “Artificial Intelligence” first coined?
(a) 1956
(b) 1965
(c) 1970
(d) 1980
Answer:
(a) 1956

Question 3.
Who is considered the “Father of Artificial Intelligence”?
(a) John McCarthy
(b) Alan Turing
(c) Marvin Minsky
(d) Herbert Simon
Answer:
(a) John McCarthy

Introduction to AI Class 9 MCQ Online Test

Question 4.
Which domain of Al involves teaching computers to learn from data?
(a) Machine Learning
(b) Natural Language Processing
(c) Robotics
(d) Computer Vision
Answer:
(a) Machine Learning

Question 5.
World’s first robot citizen is
(a) Sophia
(b) Lily
(c) Eliza
(d) Tay
Answer:
(a) Sophia

Question 6.
Which Al domain focuses on enabling machines to comprehend, interpret, and generate human language?
(a) Machine Learning
(b) Natural Language Processing
(c) Robotics
(d) Expert System
Answer:
(b) Natural Language Processing

Question 7.
What was the reality game show in which IBM Watson beat the existing champions?
(a) The Price of Right
(b) Jeopardy!
(c) Who Wants to Be a Millionaire?
(d) Wheel of Fortune
Answer:
(b) Jeopardy!

Question 8.
Which is an advantage of AI in healthcare?
(a) Reduced human errors in diagnostics
(b) High cost of implementation
(c) Limited access to healthcare facilities
(d) Increased doctor-patient interaction time
Answer:
(a) Reduced human errors in diagnostics

Introduction to AI Class 9 MCQ Online Test

Question 9.
What is a potential disadvantage of AI in employment?
(a) Increased productivity
(b) Job displacement due to automation
(c) Enhanced workplace safety
(d) Equal job opportunities for all
Answer:
(b) Job displacement due to automation

Question 10.
Which Al application assists in optimizing logistics and supply chain operations?
(a) Healthcare
(b) Agriculture
(c) Retail
(d) Transportation
Answer:
(d) Transportation

Question 11.
Mr. Dinesh Patel, a computer science teacher at kendriya vidyalya, has developed an educational humanoid namely Shalu, which can converse in 47 languages. Which AI technology helps Shalu, the robot, converse with us humans?
(a) NLP
(b) CV
(c) ML
(d) Data Science
Answer:
(a) NLP

Question 12.
Which sector uses AI for weather forecasting and climate modeling?
(a) Environmental Sciences
(b) Manufacturing
(c) Aerospace
(d) Retail
Answer:
(a) Environmental Sciences

Question 13.
Lavanaya is an environmental scientist developing an Al-powered system to predict weather patterns. At the initial stages, the system’s forecasts were inconsistent and often inaccurate. As it processed more historical weather data and incorporated real-time information, its predictive accuracy significantly increased. Which technology primarily contributed to this improvement?
(a) Natural Language Processing (NLP)
(b) Computer Vision
(c) Machine Learning (ML)
(d) All of the above
Answer:
(c) Machine Learning (ML)

Introduction to AI Class 9 MCQ Online Test

Question 14.
Which industry applies AI for enhancing customer service through automated responses?
(a) Hospitality
(b) Construction
(c) Mining
(d) Telecommunications
Answer:
(d) Telecommunications

Question 15.
Heena is a passionate chef who recently started experimenting with a smart cooking assistant. Initially, her assistant struggled to suggest accurate ingredient substitutions when certain items were unavailable. However, after a few months of continuous usage and updates, the assistant began offering more precise and fitting alternatives for ingredients. What type of technology(ies) likely contributed to the improvement in the assistant’s ability to suggest better ingredient substitutions over time?
(a) Natural Language Processing (NLP)
(b) Machine Learning (ML)
(c) Data Analytics
(d) All of the above
Answer:
(d) All of the above

Question 16.
You’re a customer service manager for a growing tech startup. With an influx of inquiries, your team struggles to handle the volume efficiently. Clients often face delays in receiving support, impacting customer satisfaction.
To streamline customer support and enhance responsiveness, which Al tool should you integrate into your system?
(a) Robotics
(b) Chatbots
(c) Natural Language Processing
(d) Computer Vision
Answer:
(b) Chatbots

Question 17.
Which Al application focuses on understanding and generating human-like speech by machines?
(a) Machine Translation
(b) Natural Language Processing
(c) Chatbots
(d) Speech Recognition
Answer:
(d) Speech Recognition

Question 18.
Which industry uses Al for predictive maintenance of machinery and equipment?
(a) Healthcare
(b) Agriculture
(c) Manufacturing
(d) Retail
Answer:
(c) Manufacturing

Introduction to AI Class 9 MCQ Online Test

Question 19.
As a researcher, you’re exploring innovative approaches to expedite the discovery of new medications for cancer treatment.
To enhance drug discovery and development for cancer treatment, which field of Al algorithms would you use to analyze vast datasets and identify potential therapeutic compounds?
(a) Healthcare
(b) Education
(c) Entertainment
(d) Aerospace
Answer:
(a) Healthcare

Question 20.
Which Al application involves the simulation of intelligent behaviour in robots to perform tasks?
(a) Natural Language Processing
(b) Robotics
(c) Computer Vision
(d) Machine Learning
Answer:
(b) Robotics

Question 21.
Which industry extensively uses Al for personalized recommendations and content curation?
(a) Healthcare
(b) E-commerce
(c) Agriculture
(d) Manufacturing
Answer:
(b) E-commerce

Question 22.
Which Al application focuses on training machines to understand and interpret visual data?
(a) Machine Translation
(b) Natural Language Processing
(c) Computer Vision
(d) Speech Recognition
Answer:
(c) Computer Vision

Question 23.
Priya designed a sentiment analysis system for social media posts. Initially, the system had difficulty distinguishing between subtle emotions like sarcasm and irony. However, with continuous exposure to diverse text inputs, its accuracy in detecting nuanced sentiments notably improved.
Which technology significantly contributed to this enhancement?
(a) Natural Language Processing (NLP)
(b) Computer Vision
(c) Machine Learning (ML)
(d) All of the above
Answer:
(a) Natural Language Processing (NLP)

Introduction to AI Class 9 MCQ Online Test

Question 24.
Kriti created a facial recognition software that initially had difficulty recognizing faces in low-light conditions. As it processed more diverse images and lighting scenarios, its accuracy under challenging lighting environments notably increased. Which technology primarily contributed to this enhancement?
Competency Based Ques.
(a) Natural Language Processing (NLP)
(b) Computer vision
(c) Machine Learning (ML)
(d) All of the above
Answer:
(d) All of the above

Statement Based Questions

Question 1.
Statement 1 Narrow AI, also known as Weak AI, is designed to perform a specific task or solve a narrow problem.
Statement 2 Narrow AI and General AI are terms used interchangeably to describe Al systems that can perform any intellectual task a human can.
(a) Both Statement 1 and Statement 2 are correct.
(b) Both Statement 1 and Statement 2 are incorrect.
(c) Statement 1 is correct but Statement 2 is incorrect.
(d) Statement 1 is incorrect but Statement 2 is correct.
Answer:
(c) Statement 1 is correct but Statement 2 is incorrect.

Question 2.
Statement 1 Al finds applications in domains like healthcare, finance, entertainment, and agriculture.
Statement 2 Al is limited to only two domains technology and robotics – and doesn’t extend its applications beyond these areas.
(a) Both Statement 1 and Statement 2 are correct.
(b) Both Statement 1 and Statement 2 are incorrect.
(c) Statement 1 is correct but Statement 2 is incorrect.
(d) Statement 1 is incorrect but Statement 2 is correct.
Answer:
(c) Statement 1 is correct but Statement 2 is incorrect.

Question 3.
Statement 1 Narrow Al focuses on performing specific tasks and is what we predominantly see in use today.
Statement 2 General AI possesses human-like intelligence and capabilities across various tasks.
(a) Both Statement 1 and Statement 2 are correct.
(b) Both Statement 1 and Statement 2 are incorrect.
(c) Statement 1 is correct but Statement 2 is incorrect.
(d) Statement 1 is incorrect but Statement 2 is correct.
Answer:
(a) Both Statement 1 and Statement 2 are correct.

Question 4.
Statement 1 Machine Learning is a subset of AI that focuses on algorithms and statistical models enabling systems to perform tasks without explicit instructions.
Statement 2 Natural Language Processing (NLP) is not considered a domain of Artificial Intelligence.
(a) Both Statement 1 and Statement 2 are correct.
(b) Both Statement 1 and Statement 2 are incorrect.
(c) Statement 1 is correct but Statement 2 is incorrect.
(d) Statement 1 is incorrect but Statement 2 is correct.
Answer:
(c) Statement 1 is correct but Statement 2 is incorrect.

Introduction to AI Class 9 MCQ Online Test

Question 5.
Statement 1 Al finds applications in autonomous vehicles, healthcare diagnostics, and personalized recommendations in various industries.
Statement 2 AI has limited real-world applications, mainly confined to the tech industry.
(a) Both Statement 1 and Statement 2 are correct.
(b) Both Statement 1 and Statement 2 are incorrect.
(c) Statement 1 is correct but Statement 2 is incorrect.
(d) Statement 1 is incorrect but Statement 2 is correct.
Answer:
(c) Statement 1 is correct but Statement 2 is incorrect.

Assertion & Reason Based Questions

Question 1.
Assertion Computer Vision is not a domain of Al that enables machines to interpret visual information from the real world.
Reason It uses algorithms to process, analyze, and understand visual data from images or videos.
(a) Both Assertion and Reason are true and Reason is the correct explanation of Assertion.
(b) Both Assertion and Reason are true and Reason is not the correct explanation of Assertion.
(c) Assertion is true but Reason is false.
(d) Assertion is false but Reason is true.
Answer:
(d) Assertion is false but Reason is true.

Question 2.
Assertion Al has widespread applications across diverse fields.
Reason AI applications span industries like healthcare, finance, automotive, and entertainment, among others.
(a) Both Assertion and Reason are true and Reason is the correct explanation of Assertion.
(b) Both Assertion and Reason are true and Reason is not the correct explanation of Assertion.
(c) Assertion is true but Reason is false.
(d) Assertion is false but Reason is true.
Answer:
(a) Both Assertion and Reason are true and Reason is the correct explanation of Assertion.

Question 3.
Assertion Al helps in predicting future events based on past data.
Reason AI uses predictive analysis by analyzing historical information to forecast trends.
(a) Both Assertion and Reason are true and Reason is the correct explanation of Assertion.
(b) Both Assertion and Reason are true and Reason is the not correct explanation of Assertion.
(c) Assertion is true but Reason is false.
(d) Assertion is false but Reason is true.
Answer:
(a) Both Assertion and Reason are true and Reason is the correct explanation of Assertion.

Introduction to AI Class 9 MCQ Online Test

Question 4.
Assertion Al is crucial in healthcare for early disease diagnosis.
Reason Al can process vast amounts of medical data and identify patterns that humans might miss.
(a) Both Assertion and Reason are true and Reason is the correct explanation of Assertion.
(b) Both Assertion and Reason are true and Reason is the not correct explanation of Assertion.
(c) Assertion is true but Reason is false.
(d) Assertion is false but Reason is true.
Answer:
(a) Both Assertion and Reason are true and Reason is the correct explanation of Assertion.

The post Introduction to AI Class 9 MCQ Online Test appeared first on Learn CBSE.

Introduction to Generative AI Class 9 MCQ Online Test

$
0
0

Students find these Class 9 AI MCQ Chapter 6 Introduction to Generative AI Class 9 MCQ Online Test with Answers helpful for self-assessment and preparation.

Class 9 Introduction to Generative AI MCQ

MCQ on Introduction to Generative AI Class 9

Class 9 Introduction to Generative AI MCQ – Introduction to Generative AI MCQ Class 9

Multiple Choice Questions

Question 1.
What is Generative Al primarily focused on?
(a) Completing tasks
(b) Analyzing data
(c) Creating new content
(d) Understanding human instructions
Answer:
(c) Creating new content

Question 2.
When was the concept of machines capable of reasoning similarly to humans introduced?
(a) 1956
(b) 1958
(c) 1964
(d) 1950
Answer:
(d) 1950

Question 3.
What was the first functioning generative AI created in 1964?
(a) GAN
(b) LSTM
(c) ELIZA chatbot
(d) Transformer
Answer:
(c) ELIZA chatbot

Introduction to Generative AI Class 9 MCQ Online Test

Question 4.
Which milestone in 2014 was a breakthrough in generative AI for generating high-quality images?
(a) RNN creation
(b) LSTM development
(c) GAN creation
(d) VAE creation
Answer:
(c) GAN creation

Question 5.
Which type of Al is most commonly used for tasks such as image and speech synthesis?
(a) Conventional AI
(b) Generative AI
(c) Symbolic AI
(d) Expert systems
Answer:
(b) Generative AI

Question 6.
Which model is specifically designed to handle sequential data like text or speech?
(a) VAE
(b) GAN
(c) RNN
(d) Transformer
Answer:
(c) RNN

Question 7.
What is the primary application of GANs?
(a) Drug discovery
(b) Music composition
(c) Fashion design
(d) All of these
Answer:
(d) All of these

Question 8.
Which advantage of Generative Al is highlighted by its use in personalized marketing content?
(a) Creativity and Content Generation
(b) Efficiency and Automation
(c) Enhanced Personalization
(d) Innovation in Science and Medicine
Answer:
(c) Enhanced Personalization

Introduction to Generative AI Class 9 MCQ Online Test

Question 9.
Which disadvantage of Generative AI is exemplified by the potential for biased outcomes in facial recognition?
(a) Data Bias
(b) Uncertainty
(c) Computational Demands
(d) Ethical Concerns
Answer:
(a) Data Bias

Question 10.
What is one application of Generative AI mentioned in the context of gaming?
(a) Language Translation
(b) Drug Discovery
(c) Simulation and Modeling
(d) Creating dynamic game environments
Answer:
(d) Creating dynamic game environments

Question 11.
Which Generative AI tool is specifically designed for code generation and completion?
(a) DALL-E
(b) GPT
(c) MuseNet
(d) StoryAI
Answer:
(b) GPT

Question 12.
What ethical concern arises from the potential use of Generative AI to create fake content?
(a) Data Bias
(b) Job displacement
(c) Misinformation
(d) Privacy risks
Answer:
(c) Misinformation

Introduction to Generative AI Class 9 MCQ Online Test

Question 13.
Which solution is suggested to mitigate bias in AI outputs?
(a) Scrutiny
(b) Training data diversity
(c) User privacy
(d) Ownership guidelines
Answer:
(b) Training data diversity

Question 14.
In which year was GPT-4 released?
(a) 2019
(b) 2020
(c) 2021
(d) 2023
Answer:
(d) 2023

Question 15.
Which type of AI relies on explicit programming and predefined rules?
(a) Generative AI
(b) Conventional AI
(c) Deep learning
(d) Supervised learning
Answer:
(b) Conventional AI

Question 16.
Which model is specifically designed for image generation based on textual descriptions?
(a) GPT
(b) RNN
(c) DALL-E
(d) VAE
Answer:
(c) DALL-E

Question 17.
What advantage of Generative AI is highlighted by its application in drug discovery?
(a) Creativity and Content Generation
(b) Enhanced Personalization
(c) Innovation in Science and Medicine
(d) Efficiency and Automation
Answer:
(c) Innovation in Science and Medicine

Introduction to Generative AI Class 9 MCQ Online Test

Question 18.
Which disadvantage of Generative Al is exemplified by the need for substantial computational resources?
(a) Data Bias
(b) Uncertainty
(c) Computational Demands
(d) Ethical Concerns
Answer:
(c) Computational Demands

Statement Based Questions

Question 1.
Statement 1: Generative AI can create new content such as text, images, music, and videos.
Statement 2: Generative AI models operate using machine learning, particularly deep learning.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Question 2.
Statement 1: VAEs (Variational Autoencoders) are used for generating new data by learning the underlying structure of a dataset.
Statement 2: GANs (Generative Adversarial Networks) use two neural networks, Generator and Discriminator, in an adversarial relationship to create new data.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Question 3.
Statement 1: RNNs (Recurrent Neural Networks) are ideal for sequential data processing due to their ability to consider past information.
Statement 2: Transformer models rely on self-attention mechanisms to understand relationships between different parts of a sequence.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Introduction to Generative AI Class 9 MCQ Online Test

Question 4.
Statement 1: Generative Al is a subset of conventional Al that relies on predefined rules for generating new content.
Statement 2: Generative Al can lead to job displacement as it automates tasks like content creation.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(d) Statement 2 is correct but Statement 1 is incorrect

Assertion & Reason Based Questions

Question 1.
Assertion: Generative AI models can create new content, such as text, images, music, and videos, without any human instructions.
Reason: These models are trained to understand patterns and structures within existing data and use that knowledge to generate new original data.
(a) Both the assertion and reason are true, and the reason is the correct explanation of the assertion.
(b) Both the assertion and reason are true, but the reason is not the correct explanation of the assertion.
(c) The assertion is true, but the reason is false.
(d) Both the assertion and reason are false.
Answer:
(a) Both the assertion and reason are true, and the reason is the correct explanation of the assertion.

Question 2.
Assertion: Generative Adversarial Networks (GANs) consist of two main components – a Generator Network and a Discriminator Network.
Reason: The Generator network creates new data, while the Discriminator network tries to identify whether the data it sees is real or generated by the Generator.
(a) Both the assertion and reason are true, and the reason is the correct explanation of the assertion.
(b) Both the assertion and reason are true, but the reason is not the correct explanation of the assertion.
(c) The assertion is true, but the reason is false.
(d) Both the assertion and reason are false.
Answer:
(a) Both the assertion and reason are true, and the reason is the correct explanation of the assertion.

Introduction to Generative AI Class 9 MCQ Online Test

Question 3.
Assertion: Recurrent Neural Networks (RNNs) are particularly suitable for tasks like language processing, where the meaning of a word depends on the words before it.
Reason: RNNs have an internal state, often called a hidden layer, that acts like a memory and stores information about past inputs.
(a) Both the assertion and reason are true, and the reason is: the correct explanation of the assertion.
(b) Both the assertion and reason are true, but the reason is not the correct explanation of the assertion.
(c) The assertion is true, but the reason is false.
(d) Both the assertion and reason are false.
Answer:
(a) Both the assertion and reason are true, and the reason is: the correct explanation of the assertion.

Question 4.
Assertion: Transformer models have become the go-to choice for many Natural Language Processing (NLP) tasks due to their ability to analyze the relationships between different parts of a sequence.
Reason: Unlike older models, transformer models rely on self-attention mechanisms, allowing them to understand how words depend on each other across long distances in a sentence.
(a) Both the assertion and reason are true, and the reason is the correct explanation of the assertion.
(b) Both the assertion and reason are true, but the reason is not the correct explanation of the assertion.
(c) The assertion is true, but the reason is false.
(d) Both the assertion and reason are false.
Answer:
(a) Both the assertion and reason are true, and the reason is the correct explanation of the assertion.

The post Introduction to Generative AI Class 9 MCQ Online Test appeared first on Learn CBSE.

Introduction to Python Class 9 AI MCQ Online Test

$
0
0

Students find these Class 9 AI MCQ Chapter 7 Introduction to Python Class 9 AI MCQ Online Test with Answers helpful for self-assessment and preparation.

Class 9 AI Introduction to Python MCQ

MCQ on Introduction to Python Class 9

Class 9 Introduction to Python MCQ – Introduction to Python MCQ Class 9

Multiple Choice Questions

Question 1.
Python is based on
(a) ABC language
(b) Modula 3
(c) Both (a) and (b)
(d) None of these
Answer:
(c) Both (a) and (b)

Question 2.
Python was initially designed by
(a) Guido Van Rossum
(b) Charles Babbage
(c) Grace Hopper
(d) Dennis Ritchie
Answer:
(a) Guido Van Rossum

Question 3.
Which of the following is/are advantage(s) of Python?
(a) Easy to use
(b) Object oriented
(c) Portability
(d) All of these
Answer:
(d) All of these

Introduction to Python Class 9 AI MCQ Online Test

Question 4.
The extension of Python files is
(a) .pyth
(b) python
(c) py
(d) p
Answer:
(c) py

Question 5.
Python interpreters are available for operating system(s)
(a) Windows
(b) MacOS
(c) Both (a) and (b)
(d) None of these
Answer:
(c) Both (a) and (b)

Question 6.
In Python programming, which is considered as keyword?
(a) var
(b) data
(c) time
(d) and
Answer:
(d) and

Question 7.
When writing a program, which elements belong to the character set used in coding?
(a) Alphabets (A-Z, a-z)
(b) Digits (0-9)
(c) Special characters (!, @, #, etc.)
(d) All of the above
Answer:
(d) All of the above

Introduction to Python Class 9 AI MCQ Online Test

Question 8.
In programming languages, which of the following are examples of data types?
i. Integer
ii. Float
iii. Character
iv. Loop
(a) Only i and ii
(b) i, ii, and iii
(c) ii, iii, and iv
(d) Only iii
Answer:
(a) Only i and ii

Question 9.
When writing a computer program, which of the following are used to store information?
i. Variables
ii. Datatypes
iii. Type conversion
iv. Comments
(a) Only i
(b) i and ii
(c) ii and iii
(d) i, ii, and iii
Answer:
(b) i and ii

Question 10.
Which of the following is a valid character in Python?
(a) @
(b) #
(c) $
(d) All of these
Answer:
(d) All of these

Question 11.
Which character is used to indicate the start of a string in Python?
(a) ”
(b) ‘
(c) Both (a) and (b)
(d) None of these
Answer:
(c) Both (a) and (b)

Introduction to Python Class 9 AI MCQ Online Test

Question 12.
How do you write a single line comment in Python?
(a) //
(b) ##
(c) /*
(d) #
Answer:
(d) #

Question 13.
Which of the following is used for multiline comments in Python?
(a) ”’Comment”’
(b) ” ” ” Comment ” ” ”
(c) Both (a) and (b)
(d) None of these
Answer:
(c) Both (a) and (b)

Question 14.
Which of the following is not a keyword in Python?
(a) pass
(b) eval
(c) assert
(d) raise
Answer:
(b) eval

Question 15.
What is the keyword used to define a function in Python?
(a) function
(b) def
(c) func
(d) define
Answer:
(b) def

Introduction to Python Class 9 AI MCQ Online Test

Question 16.
Which-of the following is a valid Python identifier?
(a) 123 var
(b) $var
(c) var 123
(d) var 123
Answer:
(c) var 123

Question 17.
Which of the following is not allowed in a Python identifier?
(a) Numbers
(b) Letters
(c) Underscore ( _)
(d) Hyphen
Answer:
(d) Hyphen

Question 18.
Which of the following is the correct way to declare a variable in Python?
(a) int x = 5
(b) x: = 5
(c) x = 5
(d) declare x = 5
Answer:
(c) x = 5

Question 19.
What will be the output of the following code snippet?
x=10
y=20
x, y = y, x
print(x, y)
(a) 1020
(b) 2010
(c) 1010
(d) 2020
Answer:
(b) 2010

Question 20.
Which of the following is an immutable data type in Python?
(a) List
(b) Dictionary
(c) Set
(d) Tuple
Answer:
(d) Tuple

Introduction to Python Class 9 AI MCQ Online Test

Question 21.
What is the datatype of the variable ” x ” in the following code?
x=3.14
(a) int
(b) float
(c) double
(d) complex
Answer:
(b) float

Question 22.
Which function is used to convert a string to an integer in Python?
(a) str()
(b) int()
(c) float()
(d) eval()
Answer:
(b) int()

Question 23.
What will be the output of the following code snippet?
x = “123”
y = int(x)
print(y+1)
(a) 1231
(b) 124
(c) 123
(d) Error
Answer:
(b) 124

Question 24.
Which of the following is the correct escape sequence for a newline character in Python?
(a) \n
(b) \t
(c) \r
(d) \b
Answer:
(a) \n

Introduction to Python Class 9 AI MCQ Online Test

Question 25.
What will be the output of the following code snippet? print(“Hello\tWorld”)
(a) Hello World
(b) HelloltWorld
(c) Hello World
(d) Error
Answer:
(c) Hello World

Question 26.
Which of the following is the correct operator for exponentiation in Python?
(a) **
(b) .
(c) *
(d) Exp
Answer:
(a) **

Question 27.
What will be the output of the following code snippet?
x = 10
y = 3
print(x // y)
(a) 3.333
(b) 3.0
(c) 3
(d) 4
Answer:
(c) 3

Question 28.
Which function is used to take input from the user in Python?
(a) input() ,
(b) raw_input()
(c) scan()
(d) get()
Answer:
(a) input() ,

Question 29.
What will be the output of the following code snippet?
name = “John”
age = 30
print(f”My name is {name} and I am {age} years old.”)
(a) My name is John and I am 30 years old.
(b) My name is {name} and I am {age} years old.
(c) My name is John and I am years old.
(d) My name is and I am 30 years old.
Answer:
(a) My name is John and I am 30 years old.

Question 30.
These operators are used to make a decision on two conditions.
(a) Logical
(b) Arithmetic
(c) Relational
(d) Assignment
Answer:
(a) Logical

Introduction to Python Class 9 AI MCQ Online Test

Question 31.
Which data type contains only numeric value in Python?
(a) Numbers
(b) Strings
(c) Lists
(d) Tuples
Answer:
(a) Numbers

Question 32.
Which of the following are sequence of character data?
(a) Lists
(b) Tuples
(c) Strings
(d) Dictionaries
Answer:
(c) Strings

Question 33.
In complex number, a+ib, where b represents as
(a) real part
(b) imaginary part
(c) special part
(d) None of the above
Answer:
(b) imaginary part

Question 34.
Which of the following is/are expression?
(a) Arithmetic
(b) Logical
(c) Relational
(d) All of the above
Answer:
(d) All of the above

Statement Based Questions

Question 1.
Statement 1: Python is a high-level programming language.
Statement 2 : Python was created by Guido van Rossum.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Question 2.
Statement 1 : Python code is compiled before it is executed.
Statement 2 : Python uses an interpreter to execute code line by line.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(d) Statement 2 is correct but Statement 1 is incorrect

Introduction to Python Class 9 AI MCQ Online Test

Question 3.
Statement 1 : Python is used for web development.
Statement 2 : Python cannot be used for scientific computing.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(c) Statement 1 is correct but Statement 2 is incorrect

Question 4.
Statement 1: Python has a simple syntax that is easy to learn.
Statement 2 : Python is platform-independent, meaning it can run on different operating systems.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Question 5.
Statement 1: Python is widely used in AI and machine learning applications.
Statement 2 : Python does not have libraries for AI development.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(c) Statement 1 is correct but Statement 2 is incorrect

Question 6.
Statement 1 Keywords in Python are case sensitive.
Statement 2 The keyword “True” is used to represent a boolean value in Python.
(a) Both Statement 1 and Statement 2 are correct.
(b) Both Statement 1 and Statement 2 are incorrect.
(c) Statement 1 is correct but Statement 2 is incorrect.
(d) Statement 2 is correct but Statement 1 is incorrect.
Answer:
(a) Both Statement 1 and Statement 2 are correct.

Introduction to Python Class 9 AI MCQ Online Test

Question 7.
Statement 1 Identifiers can begin with a digit.
Statement 2 Identifiers in Python are case sensitive.
(a) Both Statement 1 and Statement 2 are correct.
(b) Both Statement 1 and Statement 2 are incorrect.
(c) Statement 1 is correct but Statement 2 is incorrect.
(d) Statement 2 is correct but Statement 1 is incorrect.
Answer:
(d) Statement 2 is correct but Statement 1 is incorrect.

Question 8.
Statement 1 A variable in Python must be declared with a specific data type.
Statement 2 The value of a variable can change during program execution.
(a) Both Statement 1 and Statement 2 are correct.
(b) Both Statement 1 and Statement 2 are incorrect.
(c) Statement 1 is correct but Statement 2 is incorrect.
(d) Statement 2 is correct but Statement 1 is incorrect.
Answer:
(d) Statement 2 is correct but Statement 1 is incorrect.

Question 9.
Statement 1 Operators are symbols that perform operations on variables and values.
Statement 2 The assignment operator is denoted by the symbol ” == “.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(c) Statement 1 is correct but Statement 2 is incorrect

Question 10.
Statement 1 The print() function is used for output in Python programming.
Statement 2 The input() function is used for input from user in Python programming.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Assertion & Reason Based Questions

Question 1.
Assertion (A): Python is an interpreted language.
Reason ( R ): Python code is executed line by line at runtime by the Python interpreter.
(a) Both A and R are correct and R is the correct explanation of A.
(b) Both A and R are correct but R is not the correct explanation of A.
(c) A is correct but R is incorrect.
(d) A is incorrect but R is correct.
Answer:
(a) Both A and R are correct and R is the correct explanation of A.

Question 2.
Assertion (A) : Python is an object oriented language.
Reason (R) : In Python, everything is an object.
(a) Both A and R are correct and R is the correct explanation of A.
(b) Both A and R are correct but R is not the correct explanation of A.
(c) A is correct but R is incorrect.
(d) A is incorrect but R is correct.
Answer:
(a) Both A and R are correct and R is the correct explanation of A.

Introduction to Python Class 9 AI MCQ Online Test

Question 3.
Assertion (A) : Python is not a highly readable programming language.
Reason (R): Python uses indentation to define the structure of the code, making it easy to read and understand.
(a) Both A and R are correct and R is the correct explanation of A.
(b) Both A and R are correct but R is not the correct explanation of A.
(c) A is correct but R is incorrect.
(d) A is incorrect but R is correct.
Answer:
(d) A is incorrect but R is correct.

Question 4.
Assertion (A): Python is a high level language.
Reason (R): Python code can be easily understand by humans.
(a) Both A and R are correct and R is the correct explanation of A.
(b) Both A and R are correct but R is not the correct explanation of A.
(c) A is correct but R is incorrect.
(d) A is incorrect but R is correct.
Answer:
(a) Both A and R are correct and R is the correct explanation of A.

Question 5.
Assertion (A) The character set of a programming language determines the valid characters that can be used in source code.
Reason (R) Character sets ensure that programming languages can handle different types of data, such as numbers, letters, and symbols.
(a) Both Assertion (A) and Reason (R) are true, and Reason (R) is the correct explanation of Assertion (A).
(b) Both Assertion (A) and Reason (R) arè true, but Reason (R) is not the correct explanation of Assertion (A).
(c) Assertion (A) is true, but Reason (R) is false.
(d) Assertion (A) is false, but Reason (R) is true.
Answer:
(a) Both Assertion (A) and Reason (R) are true, and Reason (R) is the correct explanation of Assertion (A).

Question 6.
Assertion (A) Comments in a program can affect the execution of the code.
Reason (R) Comments are used to explain and clarify the code, making it easier for programmers to understand.
(a) Both Assertion (A) and Reason (R) are true, and Reason (R) is the correct explanation of Assertion (A).
(b) Both Assertion (A) and Reason (R) are true, but Reason (R) is not the correct explanation of Assertion (A).
(c) Assertion (A) is true, but Reason (R) is false.
(d) Assertion (A) is false, but Reason (R) is true.
Answer:
(d) Assertion (A) is false, but Reason (R) is true.

Introduction to Python Class 9 AI MCQ Online Test

Question 7.
Assertion (A) Keywords are predefined reserved words in a programming language.
Reason (R) Keywords can be used as variable names in a program.
(a) Both Assertion (A) and Reason (R) are true, and Reason (R) is the correct explanation of Assertion (A).
(b) Both Assertion (A) and Reason (R) are true, but Reason (R) is not the correct explanation of Assertion (A).
(c) Assertion (A) is true, but Reason (R) is false.
(d) Assertion (A) is false, but Reason (R) is true.
Answer:
(c) Assertion (A) is true, but Reason (R) is false.

Question 8.
Assertion (A) Datatypes specify the type of data that a variable can hold.
Reason (R) Using the correct datatype is important for ensuring the efficient use of memory and proper data operations.
(a) Both Assertion (A) and Reason (R) are true, and Reason (R) is the correct explanation of Assertion (A).
(b) Both Assertion (A) and Reason (R) are true, but Reason (R) is not the correct explanation of Assertion (A).
(c) Assertion (A) is true, but Reason (R) is false.
(d) Assertion (A) is false, but Reason (R) is true.
Answer:
(a) Both Assertion (A) and Reason (R) are true, and Reason (R) is the correct explanation of Assertion (A).

The post Introduction to Python Class 9 AI MCQ Online Test appeared first on Learn CBSE.

Python Conditional and Looping Statements Class 9 AI MCQ Online Test

$
0
0

Students find these Class 9 AI MCQ Chapter 8 Python Conditional and Looping Statements Class 9 AI MCQ Online Test with Answers helpful for self-assessment and preparation.

Class 9 AI Python Conditional and Looping Statements MCQ

MCQ on Python Conditional and Looping Statements Class 9

Class 9 Python Conditional and Looping Statements MCQ – Python Conditional and Looping Statements MCQ Class 9

Multiple Choice Questions

Question 1.
Which statement is a sequence of more than one statements?
(a) Control statement
(b) Compound statement
(c) Single statement
(d) Sequence statement
Answer:
(b) Compound statement

Question 2.
Which function is used to generate a sequence of numbers overtime?
(a) range ()
(b) len ()
(c) limit ()
(d) lim ()
Answer:
(a) range ()

Python Conditional and Looping Statements Class 9 AI MCQ Online Test

Question 3.
These statements enable a program with a cyclic flow of logic.
(a) Sequence
(b) Compound
(c) Single
(d) Iterative
Answer:
(d) Iterative

Question 4.
While loops are called as
(a) entry control loops
(b) exit control loops
(c) Both (a) and (b)
(d) None of these
Answer:
(a) entry control loops

Question 5.
A computer program is a set of instructions and are also known as
(a) compounds
(b) statements
(c) blocks
(d) comments
Answer:
(b) statements

Python Conditional and Looping Statements Class 9 AI MCQ Online Test

Question 6.
In Python programming, which statements are used for controlling the flow of a program? Choose the correct options.
(i) Sequence statements
(ii) Selection statements
(iii) Iterative statements
(iv) Conditional statements
(a) Only (i)
(b) Both (ii) and (iii)
(c) (ii), (iii) and (iv)
(d) (i), (ii) and (iii)
Answer:
(c) (ii), (iii) and (iv)

Statement Based Questions

Question 1.
Statement 1 In Python, the “if” statement is used for making decisions based on a condition.
Statement 2 The “if-else” statement allows for the execution of different code blocks based on a condition.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 1 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Question 2.
Statement 1 Sequence statements in Python are executed in the order they appear in the code.
Statement 2 The “elif” keyword is used for creating multiple conditions in a selection statement.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Python Conditional and Looping Statements Class 9 AI MCQ Online Test

Question 3.
Statement 1 The “for” loop in Python is used for iterative statements and executes a block of code a specific number of times.
Statement 2 The “while” loop in Python is an example of a selection statement.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(c) Statement 1 is correct but Statement 2 is incorrect

Assertion & Reason Based Questions

Question 1.
Assertion The while loop in Python allows the execution of a block of code repeatedly as long as a specified condition is correct.
Reason Iterative statements, like the while loop, are used for creating repetitive tasks and help in automating processes.
(a) Both Assertion and Reason are correct, and Reason is the correct explanation for Assertion.
(b) Both Assertion and Reason are correct, but Reason is not the correct explanation for Assertion.
(c) Assertion is correct, but Reason is incorrect.
(d) Assertion is incorrect, but Reason is correct.
Answer:
(a) Both Assertion and Reason are correct, and Reason is the correct explanation for Assertion.

Question 2.
Assertion The “for” loop in Python is used for iterative statements, allowing a set of statements to be executed repeatedly.
Reason The “for” loop is especially useful when the number of iterations is known beforehand.
(a) Both Assertion and Reason are correct, and Reason is the correct explanation of Assertion.
(b) Both Assertion and Reason are correct, but Reason is not the correct explanation of Assertion.
(c) Assertion is correct, but Reason is incorrect.
(d) Assertion is incorrect, but Reason is correct.
Answer:
(a) Both Assertion and Reason are correct, and Reason is the correct explanation of Assertion.

Python Conditional and Looping Statements Class 9 AI MCQ Online Test

Question 3.
Assertion In Python, the if statement is used for making decisions based on the evaluation of a condition.
Reason Selection statements help in controlling the flow of a program by executing different code blocks depending on whether a condition is correct or incorrect.
(a) Both Assertion and Reason are correct, and Reason is the correct explanation for Assertion.
(b) Both Assertion and Reason are correct, but Reason is not the correct explanation for Assertion.
(c) Assertion is correct, but Reason is incorrect.
(d) Assertion is incorrect, but Reason is correct.
Answer:
(b) Both Assertion and Reason are correct, but Reason is not the correct explanation for Assertion.

The post Python Conditional and Looping Statements Class 9 AI MCQ Online Test appeared first on Learn CBSE.


Lists in Python Class 9 AI MCQ Online Test

$
0
0

Students find these Class 9 AI MCQ Chapter 9 Lists in Python Class 9 AI MCQ Online Test with Answers helpful for self-assessment and preparation.

Class 9 AI Lists in Python MCQ

MCQ on Lists in Python Class 9

Class 9 Lists in Python MCQ – Lists in Python MCQ Class 9

Multiple Choice Questions

Question 1.
Which value is used to represent the first index of list?
(a) 1
(b) 0
(c) -1
(d) a
Answer:
(b) 0

Question 2.
Choose the output of following Python code.
l1-list ()
print (l1)
(a) [ ]
(b) ( )
(c) [,]
(d) Empty
Answer:
(a) [ ]

Lists in Python Class 9 AI MCQ Online Test

Question 3.
Suppose list
l1-[10,20,30,40,50,60,70]
print(l1[-3])
(a) 30
(b) 50
(c) 40
(d) Error
Answer:
(b) 50

Question 4.
Choose the output from following code.
Lists in Python Class 9 AI MCQ Online Test 1
(a) T
(b) N
(c) A
(d) Error
Answer:
(d) Error

Question 5.
Which function is used to insert an element at specified position in the list?
(a) extend ()
(b) append ()
(c) insert ()
(d) add 0
Answer:
(c) insert ()

Statement Based Questions

Question 1.
Statement 1 A list in Python can contain elements of different data types.
Statement 2 Lists in Python are immutable.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(c) Statement 1 is correct but Statement 2 is incorrect

Question 2.
Statement 1 The index of the first element in a Python list is 1.
Statement 2 You can use negative indices to access elements from the end of a list in Python.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(d) Statement 2 is correct but Statement 1 is incorrect

Lists in Python Class 9 AI MCQ Online Test

Question 3.
Statement 1 The append() method adds an element to the end of a list in Python.
Statement 2 The remove() method deletes an element from a list by its index.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct buit Statement 1 is incorrect
Answer:
(c) Statement 1 is correct but Statement 2 is incorrect

Question 4.
Statement 1 Lists in Python can be nested, meaning a list can contain other lists.
Statement 2 The len() function returns the number of elements in a list, including any nested lists as a single element.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(a) Both Statement 1 and Statement 2 are correct

Question 5.
Statement 1 The slice operation in lists uses the syntax list[start:end] and includes the element at the end index.
Statement 2 You can concatenate two lists in Python using the + operator.
(a) Both Statement 1 and Statement 2 are correct
(b) Both Statement 1 and Statement 2 are incorrect
(c) Statement 1 is correct but Statement 2 is incorrect
(d) Statement 2 is correct but Statement 1 is incorrect
Answer:
(d) Statement 2 is correct but Statement 1 is incorrect

Assertion & Reason Based Questions

Question 1.
Assertion (A) A list in Python can contain elements of different data types.
Reason (R) Lists in Python are mutable.
(a) Both A and R are true, and R is the correct ‘explanation of A.
(b) Both A and R are true, but R is not the correct explanation of A.
(c) A is true, but R is false.
(d) A is false, but R is true.
Answer:
(b) Both A and R are true, but R is not the correct explanation of A.

Lists in Python Class 9 AI MCQ Online Test

Question 2.
Assertion (A) You can add a new element to the end of a list using the append() method in Python.
Reason (R) The append() method modifies the list in place.
(a) Both A and R are true, and R is the correct explanation of A .
(b) Both A and R are true, but R is not the correct explanation of A.
(c) A is true, but R is false.
(d) A is false, but R is true.
Answer:
(a) Both A and R are true, and R is the correct explanation of A .

Question 3.
Assertion (A) The len() function returns the total number of elements in a list.
Reason (R) The len() function only works with lists that contain numeric data types.
(a) Both A and R are true, and R is the correct explanation of A.
(b) Both A and R are true, but R is not the correct explanation of A .
(c) A is true, but R is false.
(d) A is false, but R is true.
Answer:
(c) A is true, but R is false.

Lists in Python Class 9 AI MCQ Online Test

Question 4.
Assertion (A) Lists in Python can be concatenated using the + operator.
Reason (R) The + operator creates a new list that combines the elements of the original lists.
(a) Both A and R are true, and R is the correct explanation of A.
(b) Both A and R are true, but R is not the correct explanation of A.
(c) A is true, but R is false.
(d) A is false, but R is true.
Answer:
(a) Both A and R are true, and R is the correct explanation of A.

The post Lists in Python Class 9 AI MCQ Online Test appeared first on Learn CBSE.

AI Class 10 Notes | Artificial Intelligence Class 10 Notes

$
0
0

AI Class 10 Notes, Artificial Intelligence Class 10 Notes, CBSE AI Notes Class 10 Pdf, Class 10th AI Notes, Notes of AI Class 10, CBSE Class 10th Artificial Intelligence Notes.

Class 10 Artificial Intelligence Notes | CBSE AI Notes Class 10

Class 10 AI Notes | Artificial Intelligence Notes Class 10

AI Class 10 Notes PART A Employability Skills

  1. Communication Skills Class 10 Notes
  2. Self Management Skills Class 10 Notes
  3. Basic ICT Skills Class 10 Notes (Information and Communication Technology Skills)
  4. Entrepreneurial Skills Class 10 Notes
  5. Green Skills Class 10 Notes

AI Notes Class 10 PART B Subject Specific Skills

  1. Introduction to AI Class 10 Notes (Introduction to Artificial Intelligence)
  2. AI Project Cycle Class 10 Notes
  3. Advanced Python Class 10 Notes
  4. Data Science Class 10 Notes
  5. Computer Vision Class 10 Notes
  6. Natural Language Processing Class 10 Notes
  7. Evaluation Class 10 Notes

Also Read

Artificial Intelligence Class 10th Notes, CBSE Class 10 AI Notes, Artificial Intelligence Notes Class 10, Class 10 AI Code 417 Notes, CBSE Class 10 Artificial Intelligence Notes.

The post AI Class 10 Notes | Artificial Intelligence Class 10 Notes appeared first on Learn CBSE.

AI Class 9 Notes | Artificial Intelligence Class 9 Notes

$
0
0

AI Class 9 Notes, Artificial Intelligence Class 9 Notes, CBSE AI Notes Class 9 Pdf, Class 9th AI Notes, Notes of AI Class 9, CBSE Class 9th Artificial Intelligence Notes.

Class 9 Artificial Intelligence Notes | CBSE AI Notes Class 9

Class 9 AI Notes | Artificial Intelligence Notes Class 9

AI Class 9 Notes PART A Employability Skills

  1. Communication Skills Class 9 Notes
  2. Self Management Skills Class 9 Notes
  3. Basic ICT Skills Class 9 Notes (Information and Communication Technology Skills)
  4. Entrepreneurial Skills Class 9 Notes
  5. Green Skills Class 9 Notes

AI Notes Class 9 PART B Subject Specific Skills

  1. Introduction to AI Class 9 Notes (Introduction to Artificial Intelligence)
  2. AI Project Cycle Class 9 Notes
  3. AI Ethics Class 9 Notes
  4. Data Literacy Class 9 Notes
  5. Math for AI Class 9 Notes (Statistics and Probability)
  6. Introduction to Generative AI Class 9 Notes
  7. Introduction to Python Class 9 Notes
  8. Python Conditional and Looping Statements Class 9 Notes
  9. Lists in Python Class 9 Notes

Also Read

Artificial Intelligence Class 9th Notes, CBSE Class 9 AI Notes, Artificial Intelligence Notes Class 9, Class 9 AI Code 417 Notes, CBSE Class 9 Artificial Intelligence Notes.

The post AI Class 9 Notes | Artificial Intelligence Class 9 Notes appeared first on Learn CBSE.

Communication Skills Class 9 AI Notes

$
0
0

These AI Class 9 Notes Chapter 1 Communication Skills Class 9 Notes simplify complex AI concepts for easy understanding.

Class 9 AI Communication Skills Notes

Introduction Class 9 Notes

Communication skills are those skills which are needed to speak and write properly. These are important for everyone, these teach us about how we can give and receive information and convey our ideas and opinions to those around us.
We must develop a variety of skills for both communicating to others and learning how to interpret the information received from others.
An effective speaker is the one who is able to speak appropriately whilst maintaining eye contact with the audience, uses different vocabulary and articulate speech to suit the need of audience.
Likewise, an effective writer should be able to use words in various style and techniques to communicate their message and ideas to the readers. Thus, good reading, writing, speaking and listening skills are essential for effective communication.

Communication Class 9 Notes

The word ‘communication’ derives from the Latin word ‘Communicare’, which means ‘to share’. Communication is the ‘sharing’ of information between two or more individuals or within a group to reach a common understanding.
The information can be words, drawings, paintings, gestures, music or even sound also.

Communication involves at least two persons, i.e. a sender and a receiver. The sender develops and transmits a message to the receiver and the receiver, receives the message. It is successful only when there is a common understanding between the sender and receiver.

Importance of Communication

Ability to communicate clearly and share thoughts, feelings and ideas help us in all relationships. A good communication makes our personal as well as professional life smooth.

Some of the importance of communication skillsare as follows:
I. Inform Communication is required to give facts or information to someone. i.e. Communicating the timetable of an exam to a friend.
II. Influence Communication is needed to influence or change a person in an indirect but usually important way. e.g. negotiating with a shopkeeper to reduce the price or helping a friend to overcome stress due to examination or any other reason.
III. Express Feelings Communication is needed to share and express our feelings to other in a healthy way. i.e. Sharing our excitement about doing well in our examination or sharing our feelings to parents and friends.

Communication Skills Class 9 AI Notes

Elements of Communication

  • Communication is a two-way exchange of information, i.e. giving and receiving.
  • Speaking and writing to someone are examples of giving information.
  • Reading and listening to someone are examples of receiving information.

Communication Skills Class 9 AI Notes 1

  • Sender Sender is the person who is first in the process of communication. It decides what the message is, how it will be expressed and sent.
  • Ideas/Message The message is the actual information that the sender wishes to convey to the receiver.
  • Channel/Medium Channel is the means by which the message is sent. There can be various forms of media face-to-face communication, letters, radio, television and email etc.
  • Receiver The person who received the message is called receiver.
  • Encoding It means to change the message into a form suitable for sending.
  • Decoding Decoding is the process in which the receiver interprets and understands the message.
  • Feedback Feedback is the receiver’s response to the message. Requesting classification is a part of a’good feedback phase of communication cycle.

Perspectives in Communication Class 9 Notes

Perspectives are ideas, views, or fixed ways of thinking. These sometimes effect our communication. The perspective of communication is not only checks the way the message transmits information and influences the individual, it also examines the way that the message creates, sustains and changes cultures and communities.

The perspective of communication helps to explore the form, content, medium and pattern of the message and how it influences the way people interpret the meaning and take action.

It also helps to understand how messages are produced, how they are circulated among a group of people and how they are interpreted with an eye on the important consequences of the message.

Factors Affecting Perspectives in Communication

Sometimes, we are not able to communicate clearly because of some barriers that stop us from sharing and understanding messages.

Factor affecting perspectives in communication are as follows :

Language:

The process of communication is both verbal and written. Language plays main role in all the types of communication. The same words can have very different meanings depending on how we interpret them.
In case of use of incorrect words, unfamiliar language and lack of detail, language can act as a barrier to communicate what one wishes to convey.
i.e. Language can act as a barrier when an Indian who knows only Hindi and a Chinese who has the knowledge of Mandarin only want to interact with each other.

Communication Skills Class 9 AI Notes

Visual Perception:

Visual perception is the ability to see and interpret (analyze and give meaning to) the visual information that surrounds us. Simply we can say that it is the brain’s ability to make sense of what we see through our eyes.
For example, Completing partially drawn pictures with visual perception whereas they may be something else.

Past Experience:

Sometime our past bitter experience stop us to communicate properly.
For example, “This shopkeeper cheated me last time. Let me be careful or I scored low marks in my maths exam, so I am scared to ask and answer question in class”.

Prejudices:

Prejudice means ‘prejudgment’. It occurs when we take our past experiences with a person and assume that the same type of experience will happen with all people who are similar to the first. Prejudices are partly due to culture and partly due to personal preferences or experience.
It is used in reference to a preconceived judgment of someone due to their social class, gender, race, ethnicity, disability, age, gender and religion etc.
The problem with prejudices arises when they start to influence how or to whom we communicate.

Fixed ideas, such as thinking “No one in my class likes me” may stop a student from communicating openly in class.

Feelings:

The process of communication becomes more affective when the sender shows enthusiasm and the receiver is receptive. The mood and feelings of both the parties, affect the process of communication. Our feelings and emotions, such as lack of interest or not trusting the other person, affect communication. i.e. “I am not feeling well, therefore, I don’t want to talk”.
So, when we are not feeling well and uncomfortable, we cannot pay attention to what other are saying.

Environment:

There are many environmental factors that hamper the effectiveness of communication. Message may get blocked or misinterpreted due to environmental factors like location or situation where the communication takes place.
Noise or disturbance in the surroundings may make communication difficult.
For example, Talking to a friend in a function where there is loud music is being played by the Orchestra.

Personal Factors:

Personal factors include our own feelings, habits and ways of thinking. For, example, Fear and low confidence may make communication difficult.

Culture:

Signs which have a different meaning in different cultures, such as showing a thumb may mean ‘good job’ done for some people but may be insulting to others.

Communication Skills Class 9 AI Notes

Effective Communication:

Effective communication can happen if we follow the basic principles of professional communication skills. These can be abbreviated as 7 Cs , i.e., Clear, Concise, Concrete, Correct, Coherent, Complete and Courteous. These are further explained in the given below

  • Clear The message should be clear and it must reflect what sender wants to say.
  • Concise Use of simple words in communication and add only necessary words.
  • Concrete Use exact words and facts.
  • Correct The spelling and grammar should be flawless.
  • Coherent Use sensible and related words to the topic.
  • Complete Add all the information.
  • Courteous Be respectful, friendly and honest.

Methods of Communication Class 9 Notes

There are different methods of communication, which include non-verbal, verbal and visual.

Verbal Communication

Verbal communication is the oldest means of communication. It is most commonly used as a medium for the exchange of information. Verbal communication is the sharing of information by using words.
Types of Verbal Communication
There are mainly two types of verbal communications, viz
(a) Oral or Spoken Communication In this communication, the exchange of information, ideas, and messages through spoken words.
For example, Face-to-Face conversation, group discussion, talking to family member at home, conversation with public through speeches, talking on phone and classroom teaching etc.
(b) Written Communication In this type of communication, the written signs or symbol are used to convey the message. We can say that, it is the communication which involves written or typed words.
For example, letters, notes, email, books, newspapers, SMS, documents and files etc.

Advantages of Verbal Communication:

  • Verbal communication is easy and quick.
  • It is more reliable method of communication.
  • It is cheaper way of communication and hence saves money.
  • It promotes a secure exchange of ideas.

Communication Skills Class 9 AI Notes

Disadvantages of Verbal Communication:

  • It has no legal validity and hence will lead to problems in certain situation.
  • It has issues when communicating with distant people.
  • Verbal communication is not effective due to cultural differences between the sender and receiver of the information.
  • Verbal communication depends on words, sometimes the meaning become confusing and difficult to understand if the right words are not used.

Public Speaking Public speaking means speaking infront of a large group. Often it makes people nervous. To get over the fear and become a confident and effective speaker we must use 3Ps. viz, prepare, practice and perform.

  • Prepare means think about the topic and prepare oneself in the best way to make one’s listeners to understand the topic.
  • Practice means prior practices by oneself before public speaking.
  • Perform denotes start speaking confidently what one has preponed.

Non-Verbal Communication

Non-verbal communication is the message we send to others without using any words. It occurs without using any oral or written words.
We send signals and messages to others, through expressions, gestures and body postures.

Types of Non-Verbal Communication

There are some types of non-verbal communications as follows:
(a) Facial Expression Many a times, a facial expression shows the feelings of a person.
For example, when we are happy, we express it through a smile or when we are sad we show a gloomy face.
(b) Posture Postures are position of the body. They show our confidence and feelings.
For example, Straight body posture is seen as confidence. Holding your head may be taken as tiredness.
(c) Gesture/Body Language Gestures describe movements of parts of the body, especially hands or head, to express an idea or meaning. This includes waving, pointing and using our hands when speaking.
For example, Raising a hand may mean asking a question. Biting nails show nervousness.
(d) Touch We communicate a great deal through our touch, such as shaking hands and patting on the back.
For example, A firm handshake shows confidence. Sports coaches pat on the back of the players to encourage the players.
(e) Space The space between two persons while communicating, generally depends on the intimacy or closeness between them.
(f) Eye Contact Maintaining an eye contact with the person you are talking indicates interest, whereas, looking away can make the other person feel ignored.
(g) Paralanguage Paralanguage is the tone of our voice, speed and volume that makes a difference in the meaning of the communication. Speaking too fast may show excitement or nervousness. Speaking too slow may show seriousness, sadness or making a point.

Communication Skills Class 9 AI Notes

Importance of Non-Verbal Communication

  • Non-verbal communication makes our message stronger.
  • Using the right gestures while speaking makes our message more effective.
  • Non-verbal communication helps us understand our audience’s reaction and adjust our behaviour or communication accordingly.
  • It is helpful in communicating with illiterate people.
  • Using the right gestures and postures helps us to be professional at work.
  • If verbal message are blocked by noise or distance, etc, we can use hand movements to exchange our message.

Visual Communication

Visual communication involves sending and understanding messages only through images or picture. It is the transmission of ideas and information with the help of symbols and images.

Example of Visual Communication

Communication Skills Class 9 AI Notes 2

Advantages of Visual Communication

  • The main advantage of this type of communication is that we do not need to know any particular language for understanding it.
  • It is simple, easy to understand and remains same across different places.
  • The amount of time taken in understanding a visual communication is less as compared to other types of communication.

Writing Skills : Parts of Speech Class 9 Notes

In English, sentences are the basic framework of communication. They are important because unclear sentences create difficulty in understanding the meaning which is to be conveyed.

Sentence:

A sentence is a group of words that communicate a complete thought. It always begins with a capital letter, and always ends with either a question mark, a full stop or an exclamation mark.

Communication Skills Class 9 AI Notes

Phrase:

A group of words, which does not make complete sense in itself is known as a phrase.
e.g., (i) Sushmita is a woman of great intellect.
(ii) The horse runs at a good speed.

In the given examples, the bold parts are phrases. They do not have any meaning of their own but they contribute to the meaning of the sentence as a whole.

Using Capitals:

Capital letters are used at different places. The rules that suggest where a capital letter is to be used is given by MINTS. MINTS is a set of simple rules that helps an individual to capitalise words correctly. Each letter in the word MINTS refer to one capitalisation rules as given in the table below:

Communication Skills Class 9 AI Notes 3

Punctuation:

Punctuation refers to the marks like comma, full stop, question mark etc., which help us in separating the parts of a sentence so that its meaning becomes clear. Knowledge of proper use of punctuation marks is necessary for writing and reading English correctly.

Some of the common punctuation marks and their use have been given below:

Communication Skills Class 9 AI Notes 4

Basic Parts of Speech

According to their function in a sentence, a word in the English language can be classified into eight basic parts of speech. These are as follows:

  • Noun
  • Interjection
  • Verb
  • Adjective
  • Preposition
  • Pronoun
  • Adverb

Main Parts of Speech

Main parts of speech indicates how a word functions in producing meaning in a sentence. These are the different types of words used in the sentence. The main parts of speech are given in the table below:

Part of Speech What they do Example sentence (Examples are underlined in the sentences)
Noun Nouns are words that refer to a person, place, thing or idea.

These are ‘naming words’.
They are sometimes used with an article (the, a, an).

Rajiv wrote a very long letter.
Pronoun A pronoun is a word used in place of a noun. He went to Rashid and told him the secret of his happiness.
Adjective Adjectives are words that describe other words specifically nouns and pronouns. The young boy is very clever.
Verbs Verbs are words that show action. Puja wrote a letter.
Adverbs Adverbs are words that add meaning to verbs, adjectives or other adverbs. They answer the questions-How? How often? When? And Where? She laughed loudly.
Lucy is very tall.

Supporting Parts of Speech

Alongwith the main parts of speech, there are some other words that are required to make a sentence. These words are supporting words that join the main pairs of speech and add information to the sentences.

The four supporting parts of speech are given in the table below:

Communication Skills Class 9 AI Notes 6

Parts of a Sentence Class 9 Notes

Almost every sentence in English have two parts, i.e. a subject and a verb. Some sentences also contain a third part called an object.

  • Subject A subject is a person or thing that does an action.
  • Verb A verb describes the action performed.
  • Object An object is a person or thing that receives the action or on which an action is performed.

For example, Dia and Sanjay broke the bottle.
In the given sentence, ‘Dia and Sanjay’ are the subject as they perform an action, ‘broke’ is the verb and ‘the bottle’ is the object as the action is performed on it.

Types of Objects

In a sentence, an object an either be direct or indirect.

Direct Object Direct objects are the ones directly ‘acted on’ by the verb. In other words, direct object answers the question ‘what?’
For example, Ravi kicked the ball.
In the given sentence, the action is directly performed on the ‘ball’. Hence, ‘the ball’ is the direct object.

Indirect Object Indirect object identifies the person or the thing for whom the action of the verb is performed. It answers questions such as ‘to whom’ and ‘for whom’. For example, My mother bought a necklace for me.
Or
My mother bought me a necklace.
In the given sentences, ‘necklace’ is the direct object and ‘me’ is the indirect object.
Types of Sentences
Depending upon whether the subject of sentence performs or receivers an action, the sentences are of two types:
1. Active Sentences Active sentences are those sentences where the subject does an action. For example, She wrote a letter.

He opened the door.

2. Passive Sentences Passive sentences are those sentences in which the subject receives an action. For example, A letter was written by her.

The door was opened by him.

Depending upon the purpose of the sentence, sentences can be categorised into four types:
1. Declarative Sentences These sentences provides information or functions to state a fact. They are the most common type of sentences that always ends with a full stop :-
For example, I completed my project.

2. Interrogative Sentences These sentences are used for asking questions. Therefore, they always end with a question mark ‘?’.
For example, Did you complete project?

3. Exclamatory Sentences An exclamatory sentence expresses a strong emotion, such as joy, sadness, fear or wonder. It always ends with an exclamation mark “!
For example, I completed my project!

4. Imperative Sentences These sentences show an order, command, request or advice. It can end with a full stop or an exclamation mark (. . or ‘?’). For example, Complete your project.

Communication Skills Class 9 AI Notes

Paragraphs

A paragraph is a group of sentences dealing with a particular topic. A paragraph must have one common idea. Rules for writing a paragraph:

  • Give the paragraph unity
  • Keep the paragraph short
  • Make use of topic sentences
  • Leave out unnecessary details
  • Give the paragraph movement
  • End the paragraph with a concluding sentence

For example, A paragraph on the ‘value of trees’ will be written as given below:
“Trees are our life line. We cannot live anywhere on the planet without trees. Trees give us food, oxygen and all the luxuries that we enjoy.
Trees are not only useful for mankind but also for nature. By producing fresh oxygen they make the environment pollution-free. They prevent soil erosion, droughts and flood.
So, man must stop cutting more and more trees, otherwise he will suffer greatly.”

Pronunciation Basic Class 9 Notes

Pronunciation

Pronunciation refers to the way in which a word or language is spoken, including the correct articulation, stress and intonation of sounds. It involves the manner in which individual sounds or phonemes are produced and combined to form words.

Correct pronunciation helps an individual to express his/her views in a clear and confident manner.

Speaking Correctly

In English, there are some words that have similar spellings but are pronounced differently. There also exists, words that have different spellings but they are pronounced in the same way. In such cases, the best way to learn the correct pronunciation of words, one must listen to a language expert carefully.
For example

Communication Skills Class 9 AI Notes 7

Phonetics

Each and every word that we speak is made up of one or more sounds. So, we put these sounds together to pronounce words. The study of these sounds that we make when we speak is called phonetics. For example, The word ‘dog’ is made up of three sounds d+o+g.
In English, there are 26 Alphabets and each of these alphabets are pronounced differently. However, there are more than 26 sounds in English.
For example, The letter ‘a’ can be pronounced in different ways in different words. Some of them are given in the table below:

Communication Skills Class 9 AI Notes 8

Types of Sounds

All words in English are made of three basic types of sounds. These are as follows:

1. Vowels The English alphabet has 5 vowels – ‘a, ‘ ‘e, i ‘, ‘o’ and ‘ u’. But there are 12 vowel sounds. This means that most vowels can be pronounced in different ways. We make a vowel sound when we read a vowel is a word.
For example, The vowel ‘ i ‘ is pronounced differently in ‘bit’ and ‘bite’ (बिट, बाइट).
2. Diphthongs When we combine the sound of two vowels, the sound produced is called a diphthong. A Diphthong starts as one vowel sound and go to another.
For example, The sound of ‘ou’ n mouse (माउस).
3. Consonants All sounds except vowels and diphthongs are consonants sounds.
For example, The sound of letters ‘p’ and ‘ $t$ ‘ in the word ‘pot’. (पॉट).

Communication Skills Class 9 AI Notes

Some of the different sounds are given in the table below:

Communication Skills Class 9 AI Notes 9

Greetings and Introductions Class 9 Notes

Greetings

Before starting a conversation with someone, we use words like ‘Hello’, ‘Good Morning’, ‘Good Evening’ etc. These words are called greetings. There are many ways in which an individual can greet a person. Generally, a greeting and the reply to a greeting depends upon who we are talking to and also according to the time of the day.

Types of Greetings

There are two types of greetings. They are described below:
Formal Greetings Formal greetings are used when we address a stranger. It is also used to greet a senior, an elder or people with whom we have formal relations like teachers, boss etc. This type of greeting is mostly used in schools, colleges and offices.
For example,

Greeting Reply
Good Morning Everyone! Good Morning, Sir!
Hello Mam. How are you? I am doing well. Thank You!

Informal Greetings These are used when we talk to our friends, family or a known person.
For example,

Greeting Reply
Hey! Hello/Hi!
Hello. How’s everything? Hi. Everything is good. What about you?

Greetings according to time Formal greeting can change according to the time of the day as show in the table:

Greeting Reply
Good Morning From early morning to 11: 59 am
Good Afternoon 12 pm to 5 pm
Good Evening 5 pm to midnight

It is to be noted here that we do not greet people by saying ‘Good night’ even if it is night. ‘Good night’ is used at the end of the conversation.

Communication Skills Class 9 AI Notes

Introducing Yourself and Others

When we tell others about ourselves using sentences that provide basic information about us like our name, our hobbies etc, it is known as introduction. We need to ‘introduce’ ourselves when we meet someone for the first time or when we want others to know about us. Introduction generally includes an individuals name, hometown, job, subjects as a student, interests, hobbies etc.
We should smile while introducing ourselves and look towards the other person.
For example, Good Morning. I am Aditi.

I am from Agra and I am a teacher.
I love reading books.

Sometimes we have to introduce someone to others. We can do this by telling their name, their job and how do we know them. We can also add some quality of their’ personality.

For example, This is my uncle Ramesh.
He is a doctor. He is also a very good guitarist.

Talking About Self

There are many occasions when we have to talk about ourselves. This is especially when we are meeting new people. Also, many a times we have to fill forms with information about ourselves.

Talking About Yourself

When we meet someone for the first time, they may want to know about us. So, we need to introduce ourselves.
Introduction definitely, starts with our name. Then we can tell them other things about us like our age, our interests, the place where we live, our likes, dislikes etc.
We can form these sentences using nouns and verbs. For example,

  • My name is Kavita. (Name)
  • I live in Delhi. (Hometown)
  • I study in class IX. (Class)
  • My favourite subject is English. (Favourites)
  • I like to play basketball. (Likes)
  • I am a good team player. (Strength)
  • I cannot manage my time properly. (Weakness)

Filling a Form

In many situations, we need to write about ourselves in a form. A form is a document, typed or printed with blank spaces to fill in the information.
We have different forms for different purposes. So we should carefully read a form before filling it. The form should be filled in a neat handwriting and with correct spellings. A general form usually asks for personal information as given in the table:

Name Sometimes we might have to right first name, middle name and surname separately.
Date of birth It is usually written in DD/MM/YYYY format.
Address This is the postal address which includes your house number and the details of the street, area and the city.
PIN code This is a group of numbers used by the post office to identify a region. It is an important part of an address.
Signature (or Sign) This is your name or initials written by hand, in a specific way (which is difficult for anyone else to copy).

e.g. Harish Sethi was born on 5 December 1999. He lives in Agra, in a house named Sukh Nivas. His house number is 13 in Raja Nagar. His postal code is 282001 . Harish filled a form asking for personal information like this.

First Name Harish
Last Name Sethi
Date of Birth 5 December 1999 (or 05-12-1999)
Address Sukh Nivas, No. 13, Raja Nagar, Agra
Pin Code 282001

Asking Questions-I Class 9 Notes

Need for Asking Questions
A question is a request for any type of information. It could be an answer to a question in the textbook, information about a person or a place or about how to do a task.
For example, Where can I find a coffee shop?
Who is Rahul Dravid?
Asking questions is useful because it helps us to

  • gain new knowledge, get information,
  • ensure that what we know is correct,
  • avoid doubts, confusion, misunderstanding and
  • starting conversation with people by asking about them and their ideas.

Communication Skills Class 9 AI Notes

How We Make Sure We Have Complete Information?

Asking right questions at the right time from the right person is very important. Incomplete or incorrect information will not help us to reach a place or do a certain task. We can follow the simple method of ‘ 5 W+1 H’ to make sure that we have all the information required to do a task. The 5 W + 1 H method of asking questions is described in the table given below:

5 W+1 H Method for Asking Questions

Question Words Usages Examples
Who ‘Who’ is used to ask about people Who is the new student in the class?
Where ‘Where’ is used to ask about a place Where does she live?
When ‘When’ is used to ask about time When did she join school?
What ‘What’ is used to ask about a thing, an idea or an action What is her favourite subject?
Why ‘Why’ is used to find the reason Why is she not talking to anyone in the class?
How ‘How’ is used to find the method How can I help-her make friends?

Asking Questions-II Class 9 Notes

A question is a sentence, phrase or word that can also be used to test someone’s knowledge. We always use a question mark (?) at the end of a question.
We ask questions in our day-to-day conversations to get information. In order to get correct information we need to ask correct questions.

Types of Questions

There are two types of questions as discussed below

Close Ended Questions Such questions are those which can be answered with a ‘yes’ or a ‘no’. Their answers are limited to a ‘yes’ or a ‘no’ and no other detail is required.
For example, Did he go to the temple?
Yes.

Open Ended Questions Those questions that requires answer in detail are open ended questions. The option of answers to such questions are unlimited.
For example, What is your favourite memory from childhood.
The answer to such a question could be unlimited and will be described in detail.

Framing Close Ended Questions

Close ended questions are usually formed by beginning the question with auxiliary verbs like Be, Do and Have. Modal verbs like Can, Shall, May, Should, Could can also be used as these show possibility or necessity. One way to frame a close-ended question is to take a sentence without the above mentioned words and then adding any one of the words before the subject.
For example, The sentence ‘I like it’ can become “Do I like it?”.
Or
‘They talk on the phone everyday’ will become “Do they talk on the phone everyday?”
It is important to note here that the helping verb, changes based upon the subject while the main verb remains unchanged.
Another way to frame close ended questions is to exchange the positions of the subject and the verb.
For example, “She can cook dinner.” will change into “Can she cook dinner?”
Or
“They were cleaning the room.” will become “Were they cleaning the room?”.

Communication Skills Class 9 AI Notes

Framing Open-Ended Questions

The answers to the open-ended questions are not limited or closed. They need to be answered with more information than a simple “yes” or “no”. Open-ended questions can be formed by using the question words (5 W+1 H) like What, Why, Who, When, Where and How.
For example, the question is “What did you do?” an individual can answer anything relevant to the question such as “I went to the park”, “I went to the market”, “I went to the temple” etc.

Glossary:

  • Communication It is the sharing of information between two or more individuals or within a group to reach a common understanding.
  • Visual Perception It is the ability to see and interpret (analyse and give meaning to) the visual information that Surrounds us.
  • Prejudices it means ‘prejudgment’. It is used in reference to a perceived judgment of someone due to their social class, gender, race, ethnicity, disability, age, gender and religion etc.
  • Verbal Communication It is the sharing of information by using words.
  • Non Verbal Communication It is the message we send to others without using any words.
  • Visual Communication It involves sending and understanding messages only through images and picture
  • Punctuation It refers to the marks like comma, full stop, question mark etc., which help us in separating the parts of a sentence so that its meaning becomes clear.
  • Pronunciation It refer to the way in which a word or language is spoken, including the correct articulation, stress and intonation of sounds.
  • Phonetics The study of these sounds that we make when we speak is called phonetics.
  • Close Ended Questions Those questions which can be answered with a ‘yes’ or a ‘no’.
  • Open Ended Questions Those questions that requires answer in detail are open ended questions.

The post Communication Skills Class 9 AI Notes appeared first on Learn CBSE.

Self Management Skills Class 9 AI Notes

$
0
0

These AI Class 9 Notes Chapter 2 Self Management Skills Class 9 Notes simplify complex AI concepts for easy understanding.

Class 9 AI Self Management Skills Notes

Self Management Class 9 Notes

Self-Management is referred to as ‘Self-control’ or ‘Self-regulation’. It is considered as the ability to regulate one’s emotions, thoughts and behaviour effectively in various situations. It includes managing stress and motivating oneself and setting and working towards personal and academic goals. Self-Management involves understanding person’s ownself, understanding his interests and abilities, having a positive attitude and grooming oneself in order to develop self-confidence.

Self-Management can help in

  • overcoming all challenges and difficulties.
  • overcoming bad habits.
  • developing good habits.
  • reaching your goals.

When individual can manage himself, it helps him to avoid stress and provides opportunities to get involved in fun activities.

Positive Results of Self-Management

Parents, teachers and guardians are not always along the child to guide him/ her. In that case principles of self-management guide the individual day in and day out, on how to respond to the environmental forces. These environmental forces for students can be the class schedule, assignments, competitions, exams, different students and their behavior etc. Students can sail through various situations in life comfortable by taking following benefits from self-management

  • It guides individuals to self-monitor their conduct and behavior

Students, once become aware that they are responsible for their behavior, they become pro-active.

  • Prepares individual to complete the task independently.
  • Instills ownership to the task and the consequences amongst individuals.

Self Management Skills Class 9 AI Notes 1

  • It helps in self-evaluation

Self-management makes individuals realize that they need to do course correction by themselves if they do not get desired goals. Once the goals are achieved as desired, it also motivates individuals.

  • Helps in setting individual goals
  • Directs evaluation of performance, objective resetting and enhances self-esteem.

It leads to self – reinforcement of positive behavior Self-management reinforces appropriate behavior of. students as per the time, situation and people involved. It motivates individuals to take up right things and. refrains from getting indulged into negative things, keeping long term consequences in focus.

  • Enforces self-learning for goal achievement
  • Self-reliance is enhanced and which reinforces the behavior.

Self Management Skills Class 9 AI Notes

Self Management Skills Class 9 Notes

Self management skills boost your productivity and performance at work, which helps in achieving professional goals. It is a soft skill that increases your employability and gives you more control over your career path. These skills are essential to showcase that you will be a reliable employee.

For example, Students with strong self-management skill are able to do different activities effectively, including managing their timelines, focusing on their tasks, cooperating with others in school and at home and perform better in their studies. It helps in future studies, work and life.

Various Factors of Self-Management Skills

Self-management skills include the following factors

  • Self-Awareness Its means knowing yourself as an individual – your values, likes, dislikes, strengths and weaknesses.
  • Self-Control It is the ability to control your behaviour, discipline etc.
  • Self-Confidence It means believing in yourself that you can do any task that is given to you and not scared of taking risks.
  • Problem-Solving Its means understanding a problem and finding a solution using step-by-step method.
  • Self-Motivation Its mean doing tasks on your own without any external motivation.
  • Personal Hygiene and Grooming Its mean keeping oneself clean, healthy and smart.
  • Positive Thinking It means expressing certainty or affirmation even in tough situations.
  • Team Work It means working together with people to accomplish shared goals.
  • Time Management It means achieving tasks on time and according to the plan.
  • Goal Setting It means planning concrete goals to be accomplished within a set of time frame.

Strength and Weakness Analysis Class 9 Notes

Knowing yourself i.e. what you can do well and what not so well helps you in converting the weakness into strength and strength into an exceptional performance. Strength and weakness analysis begins with knowing yourself.

Knowing Yourself
Knowing yourself means understanding who you are, what you like or dislike, what are your beliefs, what are your opinions, what is your background, what you can do well or not etc. It is very important to know what you are, because only then you can measure your strengths and weaknesses.

Self Management Skills Class 9 AI Notes 2

Strength and Weakness Analysis

Being self aware (‘Who am l?’) means looking outside our usual characteristics like name, qualification, relationship etc. It actually means knowing our inner-strength, hidden talents, skills and even weakness.

Strength

Strengths are what we do well and are good at. Everyone has some strengths.
Examples of Strength

  • I play cricket very well.
  • I help my parents in household chores.
  • I am good at understanding other people’s emotion.
  • I am confident in dealing with strangers while keeping myself safe from any harm.

Identifying Strengths
You can identify your strengths by following some steps. These include

  • Take time to think about what you do well.
  • Think of anything that you are always good att.
  • Think about what others appreciate about you.

Self Management Skills Class 9 AI Notes

Weakness
Weaknesses are known as ‘areas of improvement’. These are what we do not do well and are not good at. Everyone has some weaknesses also.

Examples of Weakness

  • I would like to learn more about computers and its application.
  • I am unable to resist myself from junk food when my friends suggest.

Identifying Weakness

You have to identify your weakness by following steps. These include

  • Point out the areas where you struggle and identify what you find difficult to do.
  • Look at the feedback of others that you receive.
  • Be open to feedback and accept your weakness without feeling bad. Consider it as an area of improvement.

How to Overcome Weakness

There are mainly three steps to overcome weakness

  • By understanding ourselves we can know what we can and what we cannot do.
  • Based on that information, we can plan how to improve ourselves.
  • By improving our weakness, we will feel confident about ourselves.

Difference Between Interests and Abilities

Interests are the things that we enjoy doing. These may include

  • Activities you like to do at school in your free time which make you happy.
  • Activities that make you curious about and you would do even no one asked you to do.
  • Activities you want to learn or like to do in the future.

Self Management Skills Class 9 AI Notes

Ability is an acquired or natural capacity that enables an individual to perform a particular job or task with considerable proficiency.

Sometimes interests may not match abilities. In those cases, you can either improve abilities or follow other path. For example, someone may like cricket which is his interest, but he may not be able to play the game due to the absence of his necessary power or skill (ability) required for the game. Thus, it is not necessary to try to become a cricketer in this case.

Self-Confidence Class 9 Notes

Self-confidence is a sense of trusting own’s abilities and self. If a person being intelligent, hardworking and talented, but lacks confidence and avoids taking initiative, then it may be difficult for others to recognise his talent.
Self-confidence can be developed through changes in. attitude and practice.

Self-confidence is regarded as a quality which we build when we believe in our strength to succeed in anything we do in our life.

People who are confident believe that they can do anything given to them in any situation.
Qualities of self-confident people are discussed below
(i) Self-Belief It is confidence in our own abilities or judgment.
For example, Thomas Edison made thousands of prototypes of the bulbs, before he could finally invent the bulb. Inspite of struggling with repeated failures, his resilience (the capacity to recover quickly from the difficulties) and self-belief gave the world ‘the bulb, an amazing product.

(ii) Hard Work Hard work is a great deal of effort done by a person.
For example, Dipa Karmakar, inspite of having a flat foot, worked hard and became the first Indian female gymnast in the Olympic.

(iii) Positive Attitude Positive attitude is nothing but focusing on the positives even in the time of adversity. It is a mental attitude that focuses on the bright side of life.
For example, The situation of losing a game can be perceived as losing something or as an opportunity to review the game strategies and improve to win in the future.

(iv) Commitment Commitment is the state or quality of being dedicated to a cause, activity etc.
For example, Mahatma Gandhi was highly. committed to the cause of making India free from the British .Raj by apply his non-violent civil disobedience method.

Factors That Help in Building Self-Confidence

Social :

Interactions with family and social environment, like friends, relatives, teachers and media influences self-confidence of individuals. Development of confidence on self is a process which results from the experiences of individuals while interacting with others.

Cultural :

  • Cultural factors comprise of values, beliefs and customs. Indians give higher importance to family values, believe in the philosophy of “Vasudhev Kutumbhkam” and follow custom of celebrating Diwali.
  • Conforming to cultural values, beliefs and customs enhances self-confidence.

Self Management Skills Class 9 AI Notes

Physical :

  • Physical self-efficacy, physical activity and social physique anxiety are found to be influencing self-confidence of individuals. Physical açivity is found to be directly related to self-confidence.
  • Physical self-efficacy refers to physical potential to complete a given task. Social physique anxiety is a concern amongst individuals about perceived evaluation of one’s physical self by the society.

Building Self-Confidence 

Three steps to building self-confidence are as follows

  1. Appreciate Achievement and Accept Failure The player celebrates the achievements when the team wins a competition and articulates learning when the team loses a competition.
  2. Have a Goal and Take Steps Towards If a player have won bronze at an event, set the goal to win gold medal next time and take action for it.
  3. Always Look at the Good Side and be Happy If a player has lost a match, he celebrates the efforts of those team members who performed well. He will talk to people who are confident and try to gain.

Self-Confidence Building Tips

  • Getting rid of negative thoughts Going away from negative thoughts takes individuals closer to a peaceful positive mind. To travel away from negative thoughts, individuals need to involve themselves in an activity take a walk, draw, sing, dance, chat, watch, read or talk.
  • Thinking positively Positive thinking brings brain to a peaceful stance and increases productivity and performance. When individuals start thinking positively, they feel happy from within and their self-confidence boosts up.
  • Staying happy with small things An individual who is full of gratitude for every small blessing in his life feels contended. Being thankful towards people and the world, instills confidence in individuals.
  • Staying clean, hygienic and smart Personal hygiene is the first key to a confident person. Keeping hair, teeth, fingers, body and skin clean and well maintained is an easy and effective way to be at best.
  • Chatting with positive people Interacting with positive people brings forth a fresh and progressive perspective to life.

People in similar stages of life go through similar issues. Some positively handle these situations, and interacting with them shall help boost confidence.

Factors that decreases or influences our Self-Confidence

  • When we are surrounded by people having negative attitude and their attitude is reflected in their speech.
  • When we expect our success at the very first attempt itself and are reluctant to try it again.
  • When we do not take lesson from our past mistake, only feel bad about it and keep thinking of it.
  • When we think we cannot do a particular work.

Positive Thinking Class 9 Notes

Positive thinking is a positive approach that looks toward’s life’s challenges with a positive outlook or finds positivity in everything around us.
A person’s attitude may be ‘positive’ or ‘negative’. Positive thinking makes a person to look at the good in things, observe, understand and work towards improving the thing further. But negative attitude makes a person to worry and look for the bad elements in things.

Self Management Skills Class 9 AI Notes

The Importance of Positive Thinking

If an individual has a positive attitude toward’s life and its challanges, can overcome them and grow positively in life and work. The benefits of having positive attitude are follows

  • It helps to overcome challenges.
  • It makes a person an energetic individual who can do well.
  • It helps the person to improve his work.
  • It makes the person and people around him happy.

How to Keep Persons Thinking Positive?

There are few simple steps to given below to cultivate a positive attitude in life. Let us understand this with the help of the abbreviation ‘SMILE’.
[S] → Start Your Day in a Positive Way
For example, exercising, reading or watching something motivating, talking to people who are positive and make you smile.
[M] → Manage Time to Relax
For example, sit in a relaxed position and just feel how you are breathing. You can do yoga, meditation or listen to music for relaxation and calmness.
[I] → Imagine the Best in Any Situation
For example avoid thinking of bad things and instead think how you can make things better.
[L] → Learn to Take Feedback in a Positive Way
For example, if someone gives you feedback, objectively think how it will help you to improve and start working on it.
[E] → Express Gratitude
For example, be thankful for all the good things you have, to people who have helped you or pat your back for the good things you have done.

Personal Hygiene Class 9 Notes

Personal hygiene is the habit or practice of keeping ourselves clean. Cleanliness helps us to maintain our well-being and health. Being healthy helps us to attend school, college and office regularly. We have to maintain our personal hygiene. For example a beautician takes special care of his dental health as he works closely with customer. He must not have a bad breath which disturbs his customer. A receptionist at a four-star hotel make sure that his clothes are always clean with no sweat or food stains.

Importance of Personal Hygiene

Personal hygiene is very important as it helps us to

  • Stay healthy.
  • Create a good image of ourselves.
  • Avoid feeling ashamed in public due to our bad breath, body odour etc.

Self Management Skills Class 9 AI Notes

Three Steps to Personal Hygiene

The three main steps of personal hygiene include :

Care

  • Brush your teeth daily.
  • Rub oil/cream to take care of your skin.
  • Keep your hair free of dandruff.
  • Cut your nails every week.
  • Change your toothbrush as soon as it deshapes.

Wash

  • Take proper bath everyday.
  • Wash your hands frequently.
  • Wash your hair atleast every second day.
  • Wash your face, feet often.
  • Wash your clothes regularly.

Avoid

  • Keep your feet dry and change socks regularly
  • Always blow nose/cough into a handkerchief to avoid spreading germs.

Essential Steps of Hand Washing

Self Management Skills Class 9 AI Notes 3

Grooming Class 9 Notes

Grooming is the process of making yourself look neat, tidy and smart. Dressing is the action of putting on clothes. Dressing is very important for grooming.
The grooming and dressing can either send the message that you are confident, smart and sincere or possess opposite qualities.
The Importance of Grooming and Dressing
Grooming and dressing are important because they help us

  • make a good impression of ourselves
  • feel confident about ourselves
  • look smart

Self Management Skills Class 9 AI Notes

Examples of Good Dressing and Grooming

  • Clean face, short hair for boys and neatly tied hair for girls.
  • Clean clothes
  • Minimum or no flashy things (accessories) in your dress.

Guidelines For Dressing and Grooming Clothes

  • Clothes should be neat, clean and ironed.
  • Shoes should be clean and polished.
  • Socks should be clean and changed everyday.
  • Keep simple accessories like, belts, jewellery etc.
  • In certain jobs display of bodily tatoos and piercing is not allowed.

Hair

  • Simple hair styles and well combed hair are preferred as these give a smart look.
  • Hair should be washed regularly to keep clean.

Face

  • Shave regularly, it gives a clean look face.
  • Moustache should be neatly trimmed.
  • Brush the teeth twice a day to maintain dental hygiene.
  • Teeth should be kept clean, without any stains and smell.
  • Avoid eating paan or chewing betel leaves.

Glossary:

  • Self-management skills include self-awareness, self-control, self-confidence, problem-solving, self-motivation, personal hygiene and grooming, positive thinking, team work, time-management and goal setting.
  • Our strengths are what we do well and are good at.
  • Weakness are known as ‘areas of improvement’. Interests are the things that we enjoy doing.
  • Ability is an acquired or natural capacity that enables an individual to perform a particular job or task with proficiency.
  • Self-confidence is a sense of trusting own’s apilities and self. It can be developed through change in attitude and practice.
  • Positive thinking is a positive approach that looks towards life’s challenges with a positive outlook.
  • Personal hygiene is the habit or practice of keeping ourselves clean.

The post Self Management Skills Class 9 AI Notes appeared first on Learn CBSE.

Viewing all 11048 articles
Browse latest View live


Latest Images

<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>