INFORMATION & COMMUNICATIONS
TECHNOLOGY
9
Activity Card Information & Class : 9
Communications Technology
Worksheet – 1
Nowadays you all depend mostly on smart phones to communicate with
your friends. Some like to talk over phones, while some others are interested in
sending messages.
Prioritize the following based on your preference.
a) WhatsApp messages
b) Text messages
c) Messages through social media like Facebook.
d) E mail
e) Messages through Telegram.
f) .........
Any how, you have to type on a mobile phone / computer. Do you know which
keyboard layout is used in computer to type such messages in Malayalam?
Remember the eighth standard ICT chapter "Can You Type അമ്മ in the
Computer?".
Malayalam Keyboard Layout -
Look at the image given below.
1
General Education Samagra Shiksha Kerala SCERT
Activity Card Information & Class : 9
Communications Technology
Now, let's see which keys are used in the English keyboard to type the
following Malayalam words?
Complete the table with the help of the Image Keys in Keyboard
No Malayalam Words
1 കേ രളം ksjNx
2 ാക്ക
3 മലയാളം
4 അനുജൻ
5 പഞ്ചസാര
6 സ്വപ്നം
2
General Education Samagra Shiksha Kerala SCERT
Activity Card Information & Class : 9
Communications Technology
Worksheet – 2
You have learned to type on a computer using keyboard. You know that,
for typing English, we usually use QWERTY keyboard layout. You also know that,
for typing Malayalam we use INSCRIPT keyboard layout.
What are the contexts in which you have to do typing in connection with
the learning activity?
Printing is done only after the typed file is formatted and made attractive. Do
you know what are the commonly used techniques in LibreOffice Writer to
format text?
• Character Formatting.
◦ Font Size – adjust font size
◦ Font Face – to change the font.
◦ Font Style – to make the text bold / Italics / Underline
◦ Font Color – to give colour to the texts
• Paragraph Formatting.
◦ Paragraph Spacing – to adjust the spacing between the paragraphs.
◦ Alignment – to adjust left, right, center, and justified alignment.
• Page Formatting
◦ Page Format – to adjust the page size.
◦ Page Border – to give page border.
◦ Page Area – to give background colour.
◦ Insert & Format Image – to include and arrange images.
Now look at the pictures given below.
3
General Education Samagra Shiksha Kerala SCERT
Activity Card Information & Class : 9
Communications Technology
Find out what techniques may have been used to make the text in the first
picture look like in the second picture. (Write at least 4 techniques)
4
General Education Samagra Shiksha Kerala SCERT
Activity Card Information & Class : 9
Communications Technology
Sl No Used Methods
5
General Education Samagra Shiksha Kerala SCERT
Activity Card Information & Class : 9
Communications Technology
Worksheet – 3
There are some more Page Formatting techniques other than mentioned
in Worksheet 2.
• Header – To arrange text / Image / logo / Page Number that appears on
the top of every page in a document.
• Footer – To arrange the text / image / logo / Page Number that appears
on the bottom of every page in a document.
• Insert Table – To include a table in a document.
• Subscript – To include a text or number slightly below the main text.
(Eg : H2 )
• Superscript – To include a text or number slightly above the main text.
( Eg : x2 )
Here are are some of the words and actions used in an article prepared by
Yamuna to present in a seminar. Which of the given techniques in LibreOffice
Writer has been used for each. Write it down.
(Insert Table, Footer, Header, Superscript, Subscript, Page background,
Paragraph Spacing, Page Border)
Typed H2SO4
Typed E = mc2
A table containing two columns and
three rows is inserted and the name
of the element, atomic number, and
atomic mass are included in it.
Science Seminar – February 2021
is included on the top of all pages.
Page Number is included in the
bottom of all pages.
6
General Education Samagra Shiksha Kerala SCERT
Activity Card Information & Class : 9
Communications Technology
Worksheet – 4
John has to prepare a science project report in a computer. The
application used for this is LibreOffice Writer. You have familiarized with some
of the formatting techniques in LibreOffice Writer in Worksheet - 2 and
Worksheet - 3. They are listed below. Find out one context for each in which
John can use these techniques in his project report.
No Technique Context to use the technique
1 Font Size
2 Font Face
3 Font Style
4 Font Color
5 Paragraph Spacing
6 Alignment
7 Page Format
8 Page Border
9 Page Area
10 Insert Image
11 Format Image
12 Header
13 Footer
14 Insert Table
15 Subscript
16 Superscript
7
General Education Samagra Shiksha Kerala SCERT
Activity Card Information & Class : 9
Communications Technology
Worksheet- 5
Programs are a set of instructions given to a computer. After the
programs are created, they are translated into binary language using a
translator software. This is how different software are built using programs.
The following is the Python program for finding the area of a rectangle.
Each instruction and their functions are indicated.
A value of 80 is given to the variable l.
A value of 60 is given to the variable b.
The product of l and b is given to the variable A.
The value of the variable A is printed.
Now, create a program in Python to find the perimeter of this rectangle.
[Perimeter = 2 x (Length+Breadth)]
8
General Education Samagra Shiksha Kerala SCERT
Activity Card Information & Class : 9
Worksheet- 6 Communications Technology
IDE (Integrated Development Environment) is an Integrated
software that helps you to write and run various programs. IDLE is a
simple IDE software for creating python programs.
We can open IDLE from the menu Applications –Programming.
This window is called the Python Shell window and the place where
the program is typed is called the shell prompt.
In the Python Shell window, type the command print ("How are
you") and press the Enter key and its output is given below.
In Python program, anything that is given in quotes (eg. “how are
you”), even if they are digits, will be considered as strings.
What output would we get if we type the instructions given in the
table in shell prompt?
9
General Education Samagra Shiksha Kerala SCERT
Activity Card Information & Class : 9
Communications Technology
Instruction Output
Print(“Hello”)
print(“Hello”+”How are you”)
print(20+21)
print(“20”+”21”)
10
General Education Samagra Shiksha Kerala SCERT
Activity Card Information & Class : 9
Worksheet- 7 Communications Technology
When one or more statements in a program need to be repeated,
they are placed in a loop. For and While are two loops used in Python.
The following is a program that uses these two loops to display
even numbers from 2 to 100.
For Loop While Loop
Observe the program and think about what happens when the
computer executes each line.
Make changes in this program and create a Python program to
display odd numbers below 100.
For Loop While Loop
11
General Education Samagra Shiksha Kerala SCERT
Activity Card Information & Class : 9
Communications Technology
Worksheet - 8
You know that in Python language range () is used to denote a set
of values.
The instructions to store certain numbers in the variable n and its
output by using this function are listed below. Complete the table.
instructions Denoted numbers
n=range(10) 0,1,2,3,4,5,6,7,8,9
n=range(5)
n=range(1,10) 1,2,3,4,5,6,7,8,9
n=range(1,5)
n=range(1,10,2) 1,3,5,7,9
n=range(10,1,-2)
n=range(2,10,2)
n=range(10,1,-1) 10,9,8,7,6,5,4,3,2
Have you understood how to use the instruction range ( ) ?
Given below is a python program written by Anu to display the total of
numerals from 1 to 10 using range ( )
12
General Education Samagra Shiksha Kerala SCERT
Activity Card Information & Class : 9
Communications Technology
There is an error in the program. Rewrite the program by correcting it.
13
General Education Samagra Shiksha Kerala SCERT
Activity Card Information & Class : 9
Communications Technology
Worksheet - 9
Anu has prepared a table containing Maximum and Minimum
temperature of different places in LibreOffice Calc.
Then she found the average temperature of AGRA and it is
recorded in cell E2. For this, she found out the sum of cells C2 and D2
and divided it by two. Here you just have to type = SUM (C2: D2) / 2 and
press Enter.
SUM() is used to find the total in LibreOffice Calc.
14
General Education Samagra Shiksha Kerala SCERT
Activity Card Information & Class : 9
Communications Technology
Now, can you help Anu in doing the following activities.
1. Maximum temperatures are given in cells C2 to C5. So, what does Anu
have to type to find out their average?
2. Minimum temperatures are given in cells D2 to D5. So, what does Anu
have to type to find out their average?
15
General Education Samagra Shiksha Kerala SCERT
Activity Card Information & Class : 9
Communications Technology
Worksheet - 10
Look, Hari has done the activity done by Anu in the last worksheet by
using a different function.
Hari has used AVERAGE function here. =AVERAGE(C2:D2) is used to find
out the average of cells from C2 to D2.
Can you find out the average of maximum and minimum temperature by
using the same function.
Maximum temperatures are given in the cells C2 to C5. Then what
should Hari type to get its average?
Minimum temperatures are given in cells D2 to D5. Then what should
Hari type to get its average?
16
General Education Samagra Shiksha Kerala SCERT
Activity Card Information & Class : 9
Worksheet - 11 Communications Technology
Let us see the table prepared by Anu and Hari.
There are decimal places in the answers obtained when they
calculated the Daily Mean Temperature. We need to get the same as
integers. How do we get it?
To round off the decimal places the ROUND() function can be used.
You have to just type ROUND (E2,0) to round off the value in E2. Try to do
the activities by selecting the cell (F2) where the result is to be obtained.
=ROUND(E2,0)
This function is meant to round off the values in E2 to zero decimal
places. This can also be done by using average and round function
together. Just give ROUND(AVERAGE(C2, D2),0))
So what will you type to get an integer in C6?
17
General Education Samagra Shiksha Kerala SCERT
Activity Card Information & Class : 9
Worksheet - 12 Communications Technology
When Anu tried to paste the name of place and average to another
sheet, she couldn’t paste it properly. Why was it so?
These type of issues arise while we try to copy and paste LibreOffice
Calc data having function or formula. We can solve this issue by using the
option Paste Special. All you have to do is change the tick mark given in
the Formulas to Numbers while pasting.
This is the window Anu got when she used the option Paste
Special.
Where should she put tick mark to paste numbers and name of places ?
18
General Education Samagra Shiksha Kerala SCERT
Activity Card Information & Class : 9
Worksheet -13 Communications Technology
HTML is a scripting language which is used to define the content and
alignment of a web page. HTML tags are the instructions used in this
language. Contents are given within < >. Web pages are displayed through
web browsers. We can give the data to be displayed in the title bar in the web
page using HTML tags.
The model given below contains the HTML tags used to display the
school name in the title bar of a website designed for a school and how it is
displayed in a web browser.
Similarly, prepare and write the source code in HTML to display the
name of your school in the title bar.
19
General Education Samagra Shiksha Kerala SCERT
Activity Card Information & Class : 9
Worksheet - 14 Communications Technology
Have you seen words of different sizes on the websites you visited?
When creating web pages we can also embed words of different sizes using
tags such as h1, h2, h3, h4 etc. in HTML.
Given below is the source of the web page created by Ananthu and how
it is displayed in a web browser.
Write the source code of the web page that displays your school name as
h1 and School Sports as h2.
20
General Education Samagra Shiksha Kerala SCERT
Activity Card Information & Class : 9
Worksheet- 15 Communications Technology
You love to visit websites with colours, pictures and animations. We know
that websites are more attractive when colours, pictures and animations are
included in it. In addition to giving colour to the letters and words in the
webpage, we can also give the background colour to it using HTML tags.
Observe the source code of a web page given below and complete the
table.
Purpose Tags used How to use
To give colour to the letters.
To give a background colour
to the webpage
21
General Education Samagra Shiksha Kerala SCERT
Activity Card Information & Class : 9
Communications Technology
Worksheet - 16
When creating web pages using HTML, different tags are used to include
images, underline words, and to make a text bold.
See the source code of a web page and how it is displayed in the web
browser. Observe it carefully and complete the table given below.
Tags Objective How to use
to give colour to the text
to underline
to make a text bold
22
General Education Samagra Shiksha Kerala SCERT
Activity Card Information & Class : 9
Worksheet - 17 Communications Technology
A computer stores the data that are received through the input
devices and gives them back whenever required using the output devices.
There are many input and output devices available for this. Some of them are
used both as input and output devices.
Complete the following table by writing the name and its uses (input /
output / input and output) of the pictures given below.
Devices Name Input / output /
input and output
23
General Education Samagra Shiksha Kerala SCERT
Activity Card Information & Class : 9
Communications Technology
24
General Education Samagra Shiksha Kerala SCERT
Activity Card Information & Class : 9
Worksheet - 18 Communications Technology
You are familiar with the Desktop Computers . There are so many
components kept inside the system unit. For example, SMPS, Microprocessor,
Motherboard etc.
Images of some of the devices inside the system unit of Desktop
computers and their usage are given below. Find out their names and
complete the table.
Device Usage Name
All the components in the computer are
connected to this.
Regular and accurate quantity of power
supply to the components like
motherboard, processor, hard disk and DVD
drive is carried out by this equipment.
It is used to connect the DVD drive and the
hard disk drive to the motherboard.
Normally all files including pictures, music,
videos and the operating system of the
computer are stored here.
Computers store temporary information
files in it.
25
General Education Samagra Shiksha Kerala SCERT
Activity Card Information & Class : 9
Worksheet - 19 Communications Technology
You are familiar with smartphones. Many of you may have watched the
first bell classes on our Victers channel with the help of smart phones. There
are many types of smartphones available today. Find out the features of the
smartphones from various media (newspapers, audio-visual media, internet)
and complete the table below.
Country Company Model Microprocessor Storage RAM Camera
India Micromax
Capacity Specifications
Samsung
1b MediaTek 32 GB 2 GB 13MP + 2MP
Helio G35
MI
Apple
26
General Education Samagra Shiksha Kerala SCERT
Activity Card Information & Class : 9
Worksheet - 20 Communications Technology
You know that the computer-related devices are constantly changing.
Some information related to this is explained in the second part of your ICT
textbook, in the chapter Inside the Computer. Find out if the following
statements are true or false and record them.
Sl. No Statements
1. USB ports are now used in place of ports for attaching various
devices to computers.
2. A printer is a commonly used input device for viewing visuals
from a computer.
3. HDMI interfaces can transmit information, including visuals
and audio.
4. SMPS manages the data that we input into the computer.
5. Microprocessors perform basic computer calculations and
control input / output devices.
6. The permanent memory of the computer is Random Access
Memory.
7. The Operating system and other files are permanently stored
in the hard disk.
8. Swap space can be used when more capacity is required than
the storage capacity of the computer's RAM.
9. All the components inside the computer are connected to a
motherboard.
10. The process of loading the Operating System from the Hard
Disk is called Power-On Self-Test.
27
General Education Samagra Shiksha Kerala SCERT
..