Вы находитесь на странице: 1из 13

Informatics

Practices
rt. :
m
ka on
co
lip ne
for CBSE Class XI
(New Curriculum 2019-20)
, F nli
.in o

100% Course In Just 100 Pages


on ble
az ila
a
Am Av

J. RYSHITH
Copyright © 2019 J. Ryshith
All rights reserved.

Available online : Amazon.in, Flipkart.com


CONTENTS
Unit Chapter Pg.No. Marks
Unit 1 Introduction to Computer System
Basic computer organisation: Computer system –
I/O Devices, CPU, memory, hard disk, battery,
power, transition from a calculator to a computer
1-8 5
and further to smart devices. Trouble shooting
with parts of computer and basic operations of
operating system Basic concept of Data
representation: Binary, ASCII, Unicode
Unit 2 Introduction Python Programming: 9-66

rt. :
m
Ch1: Introduction To Python Language 9

ka on
Ch2: Installing The Python Interpreter 12

co
Ch3: Python Variables And Data Types 17
Ch4: Python Operators 25
Ch5: Conditional Operations In Python

lip ne 32 30
Ch6: Iteration/Looping Construct In Python 35
Ch7: Handling Strings In Python 40
, F nli
Ch8: Handling Lists In Python 46
Ch9: Handling Tuples In Python 51
.in o

Ch10: Handling Dictionaries In Python 55


ch11: Python Functions and Modules 59
on ble

Unit 3 Data Handling:


Numpy 1D array, 2D array 67-79 10
Arrays: slices, joins, and subsets
az ila

Arithmetic operations on 2D arrays


Unit 4 Data Management:
Relational databases: idea & need of a database
a

Relations, keys, primary key, foreign key


Am Av

80-94 15
Use SQL commands to create a table, keys, and
foreign keys; insert/delete an entry, delete a table
Basic SQL: select, join, indexes
Unit 5 Society, Law and Ethics
Cyber safety: safely browsing the web, Identity
protection, confidentiality, social networks, cyber
trolls and bullying.
Appropriate usage of social networks: spread of
95-100 10
rumours, and common social networking sites
Safely accessing web sites: adware, malware,
viruses, Trojans. Safely communicating data:
secure connections, eavesdropping, and phishing
and identity verification
Note: 30 Marks for Practical
UNIT 1
BASIC COMPUTER ORGANISATION

1) What is a Computer?
Ans:

rt. :
a) Computer is an electronic device that is programmed to take

m
raw data as input from the user and processes it and returns

ka on
the result and also saves output for the future use.

co
b) The term computer comes from the Latin word „computare‟,
this means to calculate or programmable machine

lip ne
c) Computer is a combination of Hardware and Software
components
, F nli
2) What is meant by Computer Hardware?
Ans:
.in o

a) All the physical components of a computer system are known


as Hardware.
on ble

b) Example: CPU, Keyboard, Monitor, Printer

3) What is meant by Computer Software?


az ila

Ans:
a) The sets of instructions or programs which helps the
functioning of the computer.
a

b) Software can be categorized as System Software and


Am Av

Application Software
c) Example: MS Windows 10, Adobe Photoshop.

4) What is meant by Basic Computer Organisation?


Ans:
a) Computer organisation is the way the hardware components
operate and are connected together to form the computer
system
b) The basic hardware components that make up the Computer
Organization and their operations are explained below:
i) Input devices : Allows users to supply information to
computers and input/output requests are delegated
1
J. Ryshith

ii) CPU (central processing unit) :Where decisions are made,


computations are performed
iii) Output devices: Allows users to receive information from
computers
iv) Memory : Stores information being processed by the
CPU

5) What is meant by Input Devices?


Ans:

rt. :
m
a) Allows people to supply information to computers and

ka on
input/output requests are delegated

co
b) Example: Keyboard, Mouse, Joy stick, Touch Pad etc.
6) What is meant by CPU?
Ans:
lip ne
a) CPU stands for Central Processing Unit
b) It can be called the brain of the computer
, F nli
c) It is the control centre of the computer
d) The CPU is also called the microprocessor
.in o

e) The CPU is made up of three main parts with have different


functions:
on ble

i) Arithmetic Logic Unit (ALU)


ii) Control Unit (CU)
iii) Memory Units also called Registers
7) What is meant by Output Devices?
az ila

Ans:
a) Allows people to receive information from computers
a

b) Example: Monitor, Printer, Speaker, Projector etc.


Am Av

8) What is meant by ALU?


Ans:
a) ALU stands for Arithmetic Logical Unit
b) It performs all the Arithmetic and Logical tasks of the
computer
c) Arithmetic operations are performed using binary number
system
9) What is meant by CU?
Ans:
a) CU controls all operations such as input, processing and
output
b) Control unit decodes and executes instructions

2
Informatics Practices - Class XI

10) What is meant by Registers?


Ans:
a) It store data temporarily inside the CPU for the purpose of
calculation
b) Registers help the CPU store intermediate data generated
during Fetch, Decode and Execute operations
11) What is meant by Primary Memory?
Ans:
a) Primary memory is the internal memory of the computer.

rt. :
m
b) Primary Memory holds the data and instruction of the task

ka on
that the computers is running currently

co
c) It is also known as Main Memory or Volatile Memory.
i) It is known as Main Memory because it is in direct

lip ne
contact of CPU
ii) It is known as Volatile Memory because when the power
is switched off it losses all the data
, F nli
d) Types of Primary Memory:
Random Access Memory (RAM), Read Only Memory (ROM)
.in o

12) What is meant by RAM?


Ans:
on ble

a) RAM stands for Random Access Memory


b) It is part of the Main memory of the computer
c) It is Volatile memory : because when the power is switched
off it losses all the data
az ila

d) It holds the data and instruction of the task that the


computers is running currently
a

e) Both read and write operations can be done on RAM


Am Av

f) The data is stored randomly and not in a serial manner


g) RAM is of two types:
i) Static RAM (SRAM) : Data stored does not have to be
refreshed once stored
ii) Dynamic RAM (DRAM) :Data stored has to be refreshed
frequently
13) What is meant by ROM?
Ans:
a) It stands for Read Only Memory.
b) Though ROM part of the Main Memory it is Non-Volatile
Memory. It means the content are not lost when power
supply is switched off

3
J. Ryshith

c) Commonly the content stored in ROM is done by the


computer manufacturer at the time of manufacturing
d) Types of ROM:
i) PROM (Programmable Read Only Memory)
ii) EPROM (Erasable Programmable Read Only Memory)
iii) EEPROM (Electrically Erasable Programmable Read
Only Memory)
14) What is meant by PROM?
Ans:

rt. :
m
a) PROM stands for Programmable Read Only Memory

ka on
b) It can be programmed once and read many times

co
c) It does not support re-programming
15) What is meant by EPROM?
Ans:
lip ne
a) EPROM stands for Erasable Programmable Read Only
Memory
, F nli
b) It can be programmed many times and read many times
c) It support re-programming
.in o

16) What is meant by EEPROM?


Ans:
on ble

a) EPROM stands for Electrically Erasable Programmable Read


Only Memory
b) It can be programmed many times using electrical signals
c) It support re-programming
az ila

17) What is meant by Secondary storage Devices?


Ans:
a

a) It is the storage devices that is external to the CPU


Am Av

b) It is non-volatile in nature: It means the content are not lost


when power supply is switched off
c) It can store large amounts of data for later use
d) Examples for secondary storage device: Hard Disk, DVD,
Pen Drives, Blue Ray Disk etc.
18) What is meant by Hard Disk?
Ans:
a) It is a secondary storage device
b) The Hard Disk is made up of thin metal plates that are coated
with magnetic disks within hard cover.
c) It has a read/write head that reads or writes on the plates
d) the plates are divided into tracks and sectors

4
Informatics Practices - Class XI

e) Since the data is stored magnetically, information recorded to


the hard disk remains intact after you turn your computer off
19) Explain the various type of Software used in computers.
Ans:
a) System Software : The software that guides the internal
operations of the computer and provides a platform for other
software to run
i) Operating System:
 An operating system (OS) is a collection of software

rt. :
m
that manages computer hardware resources and

ka on
provides common services for computer programs.

co
 Basic Operations of an Operating System:
(a) The operating system acts as an Interface between

lip ne
(b)
User and the computer hardware.
The OS helps the Hardware component
coordinate with each other by using Device
, F nli
Drivers
(c) The OS acts as a platform for the Application
Software to run on
.in o

(d) The OS provides a mechanism of managing the


data. Such as creating folders, saving files etc.
on ble

(e) The OS also provides various System


Maintenance tools in order to manage the
performance of the system to the optimum.
az ila

 Examples of OS: Windows 10, Mac, UNIX, Linux


ii) Language Processor: It is a software that converts the
a

Programs written in High Level Language (HLL) into


Am Av

Machine Language.
There are two types of Language Processors:
 Compiler: A Compiler converts the source code
(HLL) into object code in one go and reports all the
errors along with their line numbers
 Interpreter: An interpreter converts source code into
object code line by line and executes it there and then.
It does not shift to the next line if a line contains
errors.
b) Application Software: Also known as an application or an
App. It is a software designed to help the user to perform
specific tasks. Example: MS-Office, Adobe Photoshop.
5
J. Ryshith

i) Packages :
 General application software are known as Packages.
 Example: Spreadsheets, Presentation Graphics, Word
Processing
ii) Utilities:
 Utility software helps to manage, maintain and
control computer resources.
 Example : Antivirus software, backup software, Text
editors and disk maintenance tools

rt. :
m
iii) Business Software :

ka on
 Software designed to cater to general requirements of

co
a business
 Example: Store Management System, Payroll

lip ne
Management System.
20) Explain the statement, “Transition from Calculator to
Computer and further to smart devices.”
, F nli
Ans:
a) When we look back at the history of computers, we realize
.in o

that all the initial computing devices were basically machines


to do calculations
on ble

b) The word calculate itself comes from the Latin calculus,


which means small stone. Such stones were used to count.
c) Later on the abacus device was used in Babylonia as early as
az ila

2400 BC to calculate.
d) The „Difference Engine‟ and „Analytical Engine‟ that were
developed by Charles Babbage also were a giant leap ahead in
a

the attempt of creating a calculating device.


Am Av

e) But the modern computer is not just a Calculator, but it


influences almost every sphere of human life and is entering
into the world of Artificial Intelligence by creating Smart
Devices.
21) What is meant by Smart Device?
Ans:
a) A smart device is the term used to denote an electronic
device, that is connected to other devices or networks using
wireless connectivity such as Bluetooth, Wi-Fi, or 4G.
b) Examples of Smart Devices:
i) Mobile Smart Phones
ii) Smart Watches
6
Informatics Practices - Class XI

iii) Smart wrist Bands


iv) Smart Air Conditioners
v) Smart Speakers
22) List the features of Smart Devices computing systems.
Ans:
a) Portability :The device can be physically moved from
one place to another and still continue to work
b) Connectivity: Usually connected through wireless Radio

rt. :
m
Wave signals (unguided medium of connection)
c) Size :The size of the device is small to enable

ka on
co
portability
d) Memory :The memory of the device is much less as
compared to traditional computing systems
e) Power
lip ne :The power comes from batteries, and
requires regular recharging
f) Functions :Usually provides: Calling, camera, touch
, F nli
screen, audio/video, gaming, running of apps.
g) System on a Chip(SoC):All the processing components are
.in o

built on a single Microchip


23) What is meant by the term Troubleshooting a computer?
on ble

Ans: Incase the computer does not work normally, then the process
of identifying the problem and attempting to fix the problem is called
Troubleshooting a computer.
az ila

24) Explain the various methods of Troubleshooting a of


computers.
Ans: Troubleshooting involves two basic steps. First identifying the
a

problem, and second to attempt to resolve it. The following


Am Av

methods can be used to Troubleshoot computers:


a) Try to access if the problem is caused because a hardware
issue or a software issue.
b) Install any Operating System updates if required : This could
solve hardware device issues if any
c) Open the Task Manager to monitor the currently running
applications:
i) Task Manager can be opened by using
CTRL+SHIFT+ESC
ii) Any Application can be force closed from the Task
Manager

7
J. Ryshith

d) Keep the computer in a place where it gets enough


ventilation so that it does not get over-heated
e) Run Antivirus scans to resolve any computer virus issues
f) Reinstall the Operating System can resolve the problems
sometimes
25) What is meant by Data Representation in computers?
Ans:

rt. :
m
a) Data Representation means the method used to store data,
process data and then transfer data in the computer.

ka on
co
b) We know that a computer is an electronic device and it
cannot understand any other language other than electronic
signals

lip ne
c) Thus the process of converting data, such as text, numbers,
photo, or music, into electronic data that can be manipulated
by the computer is known as Data Representation
, F nli
26) Explain the various forms of data representation
techniques.
.in o

Ans:
a) Binary :
on ble

i) 0 and 1 is used in the binary system to represent data


ii) Computers represent numeric data using the binary
number system, that has a base of 2.
az ila

b) ASCII:
i) It stands for American Standard Code for Information
Interchange
a

ii) Computers represent character data using the ASCII


Am Av

iii) ASCII uses 8 bits to represents character data


iv) Thus, ASCII provides codes for 256 characters
c) UNICODE:
i) UNICODE is similar to ASCII but uses 16 bits to
represent character data which supports codes for 65000
characters
ii) UNICODE is helpful in order to incorporate codes for
the Asian languages characters too

8
rt. :
m
To read the rest of

ka on
the content

co
order online
lip ne
Available online :
, F nli
Amazon.in
.in o
on ble

Flipkart.com
az ila

Title:
a

Informatics Practices
Am Av

for CBSE Class XI


(New Curriculum 2019-20)

100% Course In Just 100 Pages


Am Av
a
az ila
on ble
.in o
, F nli
lip ne
ka on
rt. :
co
m

Вам также может понравиться