0% found this document useful (0 votes)
20 views8 pages

Computer Science1711032664387

Uploaded by

reddyharshil581
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
20 views8 pages

Computer Science1711032664387

Uploaded by

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

DELHI PUBLIC SCHOOL BANGALORE EAST

ANNUAL REVISION WORKSHEET (2023-2024)


SUBJECT: COMPUTER SCIENCE
NAME: ___________________________________ CLASS: VII SEC: _____ ROLL NO.___
DATE: ______________________________

I. Choose the correct option:


1. __________________ is the latest AI feature which can read your email text and can give suggestions
for a quick reply.
i. Compose Email ii. Smart reply iii. Smart chat
2. ___________ is the assignment operator used to assign a value to a variable.
i. = ii. = = iii. !=
3.______________ chart is a combination of two or more chart types in a single chart.

i. Combo ii. Mixture iii. Amalgam

4. Which of the following Statements are TRUE with respect to AI?

Statement 1: Machine learning is used to program a machine in a manner that the machine can learn
independently.
Statement 2: AI based chat bots can solve customer-based queries 24 x 7.
i. Statement 1:True, Statement 2: False
ii. Statement 1:True, Statement 2: True
iii. Statement 1: False, Statement 2: True
5. The output of print(“10”+“20”) will be_________
i. 30 ii. 10+20 iii. 1020

6.____________________ is used in creating new security systems, face recognition and self-driven
vehicles.
i. Passwords ii. Computer Vision iii. Camera

II. Name the following:

1.A pictorial representation of the flow of steps to solve a problem.

___________________________________________________________________________

2.The component of the chart in Excel that describes the purpose and contents of the chart.

_________________________________________________________________________

Page 1 of 4
3.The ability of a machine to perceive its environment and take decisions to achieve a definite goal.

_____________________________________________________________________
4.The statements that enables the execution of a statement to repeat till the condition is true.
__________________________________________________________________________

III. Complete the analogy:


1. / :Division :: // :______________________

2. ** : _________________________:: * : Multiplication

3. : Pie Chart : :: ____________________________

4. Navigation :____________________:: Recommendation : YouTube

IV. Find the error and rewrite the Python code:

1. a=int((“Enter any number”))

________________________________________________________________________

2. print (DPS East)


________________________________________________________________________

V. Find the output of the following program:

1. a=100
b=200
c=100
print(a<b)
2. a=29
If a%2==0:
print(“The number is even”)
else:
print(“The number is Odd”)
3. print(“Welcome ”*3)

VI. Answer the following questions.


1. Write an algorithm to apply for a driving license.

Step1:______________________________________________________________________________

Step2:______________________________________________________________________________

Step3:______________________________________________________________________________

Page 2 of 4
2.What are sparklines and its types?

_______________________________________________________________________________

_______________________________________________________________________________

_______________________________________________________________________________

3.Write any two differences between sequential and conditional control structure.

_________________________________________ _________________________________________

_________________________________________ _________________________________________

_________________________________________ _________________________________________

_________________________________________ _________________________________________

VII. Fill in the blanks.


1.The _______________feature of Excel used to display only specific record and hide the rest of the
records.
2. In Python, ________________ is the priority order of an operator according to which expression is
evaluated.
3. __________________ device is used to interpret voice commands.
4.____________________ operators work on two operands.
5. A _______________ chart uses connecting dots to display trends in data over a period of time.

VIII. Match the following values with its data types:

Operator Description

1. <, >, != Boolean/Logical Operator

2. NOT, AND, OR Unary Operator

3. +a, -a Relational Operators

IX. Answer the following Case Based Questions.


1. Suhan’s grandparents are farmers. The use old technologies to cultivate in their farm. Suhan wants
assist them in their business with new technologies.
i. Suggest him a device which he can use to monitor the field for pest identification?
_________________________________________________________________
Page 3 of 4
ii. How can he help in direct product supplies to the customers using AI?
___________________________________________________________________________
2. Rayan’s teacher has given him a divisibility check Python program.
i. Which control statement should he use to check the divisibility?
___________________________________________________________________________
ii. Which two operators he should use to check the condition.
___________________________________________________________________________
3. David is working on the pollution analysis report of various states of our country. He has data in
multiple sheets which he has to formatted.
i. Which feature of Excel he should use to select all the worksheets?
___________________________________________________________________________
ii. Which feature of Excel he should use to arrange the data in an ascending order?
___________________________________________________________________________
iii. Which feature will be helpful in combining the data of multiple worksheets into a single
worksheet?
___________________________________________________________________________

X. Label the components of the chart of Excel.

1. __________________________________

2. __________________________________

3. __________________________________

***************************

Page 4 of 4
DELHI PUBLIC SCHOOL BANGALORE EAST
ANNUAL REVISION WORKSHEET (2023-2024)
SUBJECT: COMPUTER SCIENCE Answer Key
NAME: ___________________________________ CLASS: VII SEC: _____ ROLL NO.___
DATE: ______________________________

I. Choose the correct option:


1. __________________ is the latest AI feature which can read your email text and can give suggestions
for a quick reply.
i. Compose Email ii. Smart reply iii. Smart chat
2. ___________ is the assignment operator used to assign a value to a variable.
i. = ii. = = iii. !=
3.______________ chart is a combination of two or more chart types in a single chart.

i. Combo ii. Mixture iii. Amalgam

4. Which of the following Statements are TRUE with respect to AI?

Statement 1: Machine learning is used to program a machine in a manner that the machine can learn
independently.
Statement 2: AI based chat bots can solve customer-based queries 24 x 7.
i. Statement 1:True, Statement 2: False
ii. Statement 1:True, Statement 2: True
iii. Statement 1: False, Statement 2: True
5. The output of print(“10”+“20”) will be_________
i. 30 ii. 10+20 iii. 1020

6.____________________ is used in creating new security systems, face recognition and self-driven
vehicles.
i. Passwords ii. Computer Vision iii. Camera

II. Name the following:

1.A pictorial representation of the flow of steps to solve a problem.

___Flowchart______________________________________________________________

2.The component of the chart in Excel that describes the purpose and contents of the chart.

__Chart Title _______________________________________________________________

Page 1 of 4
3.The ability of a machine to perceive its environment and take decisions to achieve a definite goal.

__Artificial Intelligence_______________________________________________________
4.The statements that enables the execution of a statement to repeat till the condition is true.
__Iterative Statements_________________________________________________________

III. Complete the analogy:


1. / :Division :: // :__Floor Division________

2. ** : _Exponential Value__:: * : Multiplication

3. : Pie Chart : :: ___Doughnut Chart_____

4. Navigation :_Google Maps____:: Recommendation : YouTube

IV. Find the error and rewrite the Python code:

1. a=int((“Enter any number”))

a=int(input(“Enter any number”))


2. print (DPS East)
print (“DPS East”)
V. Find the output of the following program:

1. a=100 True
b=200
c=100
print(a<b)
2. a=29 The number is Odd
If a%2==0:
print(“The number is even”)
else:
print(“The number is Odd”)
3. print(“Welcome ”*3) Welcome Welcome Welcome

VI. Answer the following questions.


1. Write an algorithm to apply for a driving license.
Step1:__Input your age________________________________________________________________

Step2:__Check your age. If your age is greater than 18, then you can apply for the license.___________

Step3:__If it is less than 18, than you are not eligible to apply for a license.______________________

Page 2 of 4
2.What are sparklines and its types?

_Sparklines are the mini charts that fit in a single cell to provide a visual representation of data. There
are 3 types of Sparklines i.e. Line, Column and Win/Loss

_______________________________________________________________________________

3.Write any two differences between sequential and conditional control structure.

Sequential Structure Conditional Structure

_Statements in the program are executed in a _The execution of statements depend on the specific

sequential manner._____________________ outcome of the conditional expression._________

Ex. L=10 Ex. A=10


B=20 if A%2==0:
Area=L*B print (“Number is even”)
print (“Area of the rectangle is – ”, Area) else:
print (“Number is Odd”)

VII. Fill in the blanks.


1.The _filter__feature of Excel used to display only specific record and hide the rest of the
records.

2. In Python, _precedence___ is the priority order of an operator according to which expression is


evaluated.
3. _NLP____ device is used to interpret voice commands.
4.___Binary__ operators work on two operands.
5. A _line_____ chart uses connecting dots to display trends in data over a period of time.

VIII. Match the following values with its data types:

Operator Description

1. <, >, != Boolean/Logical Operator 2

2. NOT, AND, OR Unary Operator 3

3. +a, -a Relational Operators 1

Page 3 of 4
IX. Answer the following Case Based Questions.
1. Suhan’s grandparents are farmers. The use old technologies to cultivate in their farm. Suhan wants
assist them in their business with new technologies.
i. Suggest him a device which he can use to monitor the field for pest identification?
__Drone with computer vision_______________________________________
ii. How can he help in direct product supplies to the customers using AI?
___Chat Bot________________________________________________________________
2. Rayan’s teacher has given him a divisibility check Python program.
i. Which control statement should he use to check the divisibility?
_____If -Else_________________________________________________________________
ii. Which two operators he should use to check the condition.
____% for Checking the remainder and == for comparing______________________________
3. David is working on the pollution analysis report of various states of our country. He has data in
multiple sheets which he has to formatted.
i. Which feature of Excel he should use to select all the worksheets?
___Grouping Worksheets______________________________________________________
ii. Which feature of Excel he should use to arrange the data in an ascending order?
___Sorting Data______________________________________________________________
iii. Which feature will be helpful in combining the data of multiple worksheets into a single
worksheet?
___Consolidating Data________________________________________________________

X. Label the components of the chart of Excel.

1. __Chart Title_______________________
2. __Value Axis_______________________
3. __Legend__________________________

**************************

Page 4 of 4

You might also like