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

CSC Vii Term2 Worksheet

This document discusses a worksheet for a 7th grade computer science class on app development. It includes fill-in-the-blank, multiple choice, and true/false questions about different types of apps like educational, social media, and e-commerce apps. Sample questions ask about the character limit for tweets, networking apps like LinkedIn, and examples of e-commerce apps. The worksheet distinguishes between desktop and mobile apps, noting that mobile apps are usually developed for a specific operating system and device.

Uploaded by

mariaabdul035
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)
29 views8 pages

CSC Vii Term2 Worksheet

This document discusses a worksheet for a 7th grade computer science class on app development. It includes fill-in-the-blank, multiple choice, and true/false questions about different types of apps like educational, social media, and e-commerce apps. Sample questions ask about the character limit for tweets, networking apps like LinkedIn, and examples of e-commerce apps. The worksheet distinguishes between desktop and mobile apps, noting that mobile apps are usually developed for a specific operating system and device.

Uploaded by

mariaabdul035
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

INTERNATIONAL INDIAN SCHOOL JEDDAH

VI- VIII BLOCK


COMPUTER SCIENCE -WORKSHEET

CLASS :- VII L2-FORMULAS AND FUNCTIONS IN EXCEL

I. FILL IN THE BLANKS


1. ________________are the pre-defined or in-built formulas that come with Excel.

2. Addition of two or more text values is called __________________.

3. _________________ occurs when a formula in a cell, refers to its own cell, directly or indirectly.

II. CHOOSE THE CORRECT ANSWER


1. Which of the given cell references can be used in an absolute reference?
a. K10 b. $K10 c. $K$10 ( )
2. Which function returns the least common multiple of the integer?
a. GCD b. LCM c. Both a and b ( )
III. STATE TRUE OR FALSE
1. Autosum option is the fastest way to find the total of the given numbers in a range. ( )
2. #Name? error occurs if the formula contains an invalid argument ( )
3. TODAY() function Displays the current date in the selected cell. ( )
IV. ANSWER THE FOLLOWING
1. What are the 2 places where Autosum button is available? (2M)
__________________________________________________________________________________
__________________________________________________________________________________
__________________________________________________________________________________
__________________________________________________________________________________
2. What is cell reference? Mention its types.? (3M)
_________________________________________________________________________________________
_________________________________________________________________________________________
_________________________________________________________________________________________
_________________________________________________________________________________________
CLASS :- VII L2-FORMULAS AND FUNCTIONS IN EXCEL
ANSWERKEYS

I.FILL IN THE BLANKS

1. Functions
2. Concatenation.
3. Circular reference

II. CHOOSE THE CORRECT ANSWER

1. c. $K$10
2. c. Both a and b
III. STATE TRUE OR FALSE
1. ( True )
2. ( False )
3. ( True )
IV. ANSWER THE FOLLOWING
1. What are the 2 places where Autosum button is available? (2M)
• In the Editing group on the Home tab
• In the Function Library group on the Formula tab
2. What is cell reference? Mention its types. (3M)
The cell address in a formula is known as the cell reference.
There are three types of cell references: Relative reference, Absolute reference and Mixed
reference.

*************************
INTERNATIONAL INDIAN SCHOOL JEDDAH
VI- VIII BLOCK
CLASS: - VII SUBJECT: - COMPUTER SCIENCE
LESSON-4, MORE ON PYTHON WORKSHEET
I. Fill in the blanks:
1. The Arithmetic operators are used to perform _________________operations.
2. A _______________ is a pictorial representation of the flow of steps to solve a problem.

II. Choose the correct answer:


1. Which of the following operand is an example for unary operator?
a) a = - 50
b) a + b
c) a * c
2. Which of the following Conditional statement is used to evaluate only one condition?
a) The if Statement
b) The if…else Statement
c) The if…elif…else Statement
3. What is the output of the following code segment?
age = 8
if age>3:
print(“The Entry ticket for zoo is 20SR”)
else:
print(“He/She does not need to pay for the ticket”)

a) “He/She does not need to pay for the ticket”


b) “The Entry ticket for zoo is 20SR”
c) None of the above

III. State true or false:


1. The Assignment operator (=) is used to assign a value to a variable. ( )
2. ** operator is used to find the product of the data. ( )

IV. Answer the Following Question: (2m)


1. Define algorithm in detail.

V. Answer the Following Question: (3m)


1. Rewrite the program after correcting the syntactical errors.
d = integer(input(“Enter any number: “))
if d%2= =0
Print(d,“ is divisible by 2”)
elif d%3 = =0
Print(d,“ is divisible by 3”)
else
Print(d,“ is not divisible by 2, 3”)
Answer key:

I. Fill in the blanks:


1. Mathematical
2. Flow chart

II. Choose the correct answer:


1. a = - 50
2. The if Statement
3. The Entry ticket for zoo is 20SR

III. State True or False:


1. T
2. F

IV. Answer the Following: (2m)


Ans : An Algorithm is a well-defined step by step procedure to solve a problem. It helps us to
understand the problem and its solution in a better way.

V. Answer the Following: (3m)


Ans :
d = int(input(“Enter any number: “))
if d%2= =0:
print(d,“ is divisible by 2”)
elif d%3 = =0:
print(d,“ is divisible by 3”)
else:
print(d,“ is not divisible by 2, 3 or 5”)
INTERNATIONAL INDIAN SCHOOL JEDDAH
VI- VIII BLOCK
L7-MORE ON HTML5 - WORKSHEET
CLASS :- VII
SUBJECT:- COMPUTER SCIENCE

I. FILL IN THE BLANKS


1. attribute specifies that the list order should be in the descending order.
2. Web browsers support various graphics formats like .
3. By using tag ,unordered list is represented.

II. CHOOSE THE CORRECT ANSWER


1. Which of the following is a type of lists that HTML supports?
a. Ordered lists b. Description List c. Both

2. The correct HTML code for inserting an image is


a. <img href=image.jpg>
b. <img> image.jpg </img>
c. <img src=”image.jpg”>

III. STATE TRUE OR FALSE


1. Ordered list is called a Bulleted List. ( )
2. <hr> tag in HTML is used to define Heading on the page . ( )
3. <Alt> tag is used is to specify an alternate text for an image. ( )

IV. ANSWER THE FOLLOWING.(2M)


Q: Write the use of start attribute in Ordered list
Ans:

V. ANSWER THE FOLLOWING.(3M)


Q.How are images added in HTML document?.

Ans:
CLASS:- VII
L7-MORE ON HTML5 - WORKSHEET
SUBJECT:- COMPUTER SCIENCE
ANSWER KEYS

I. FILL IN THE BLANKS

1. Reversed
2. GIF,PNG AND JPEG.
3. <ul>
II. CHOOSE THE CORRECT ANSWER
1. c.) Both
2. c.) <img src=”image.jpg”>
III. STATE TRUE OR FALSE
1. False
2. False
3. True

IV. ANSWER THE FOLLOWING.(2M)


Ans: An ordered list automatically starts with number 1 . But you can also start the list with
different number with the help of start attribute.
Ex: <ol start=101>

V. ANSWER THE FOLLOWING.(3M)


Ans: There are two ways to insert images: Inline and External.
Inline: Inline image is displayed when the webpage is opened
External: These images are referenced externally and viewed separately by clicking on a link

***********
INTERNATIONAL INDIAN SCHOOL JEDDAH
VI- VIII BLOCK
COMPUTER SCIENCE -WORKSHEET
CLASS :- VII L8-INTRODUCTION TO APP DEVELOPMENT

I.FILL IN THE BLANKS

1.__________________apps are equally useful for both students and teachers.

2. MIT App Inventor is an open-source web application originally provided by _________________ ,


and now maintained by the Massachusetts Institute of Technology (MIT).

II.CHOOSE THE CORRECT ANSWER


1. Which of the following is a networking app that specialises in the sharing of business and
professional information?
a)Facebook b) Instagram c) LinkedIn ( )
2. What is the new limit of characters in tweets?
a)140 b) 280 c) None of these ( )
3. Which of the following is App is used for the latest information on the Global and Indian stock markets?
a)Moneycontrol b) Pockets c) Eclipse ( )
III. STATE TRUE OR FALSE
1. BHIM is an example of Educational Apps. ( )
2. Mobile apps are usually developed for a specific operating system and device. ( )
IV.ANSWER THE FOLLOWING? (2M)

Q. What is E-commerce? Write examples of 2 famous Ecommerce Apps.


_________________________________________________________________________________
_________________________________________________________________________________
_________________________________________________________________________________
V.ANSWER THE FOLLOWING? (3M)

Q. Distinguish between a Desktop app and Mobile app.


________________________________________________________________________________________
________________________________________________________________________________________
________________________________________________________________________________________
________________________________________________________________________________________
________________________________________________________________________________________
CLASS :- VII SUBJECT:- COMPUTER SCIENCE
L8-INTRODUCTION TO APP DEVELOPMENT

ANSWERKEYS

I.FILL IN THE BLANKS

1. Educational
2. Google

II. CHOOSE THE CORRECT ANSWER

1. c) LinkedIn
2. b) 280
3. a)Moneycontrol

III. STATE TRUE OR FALSE


1. ( False )
2. ( True )

IV. ANSWER THE FOLLOWING (2M)

Q. What is E-commerce? Write examples of 2 famous Ecommerce Apps.


Ans: Buying or selling of goods or services, using electronic means, is known as E-commerce.
Eg: Flipkart, Amazon.

V.ANSWER THE FOLLOWING? (3M)

Q. Distinguish between a Desktop app and Mobile app.

Ans: Desktop apps can be used on a desktop or laptop. Generally, they do not need web
access and run independently on a computer
Mobile apps run on a smartphone or tablet and have responsive web designs to adapt to the
much smaller screen sizes and orientations of mobile devices.

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

You might also like