0% found this document useful (0 votes)
13 views10 pages

9th Computer Notes

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)
13 views10 pages

9th Computer Notes

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/ 10

Computer Syllabus

Ch.1- computer system


Ch.2- types of hardware
Ch.3- types of software
Ch.5- computer networking, multimedia basics
Ch.7- OpenOffice Writer
Ch.13- Introduction to python

CH.1-COMPUTER SYSTEM

- Microblogging
- SMS
- Parts of CPU
- Strengths, weaknesses of computer
- Types of computer

CH.2-TYPES OF HARDWARE

- Hardware, Software
- Units of computer memory measurement
- Main memory : RAM-ROM
- Secondary memory devices (Storage)
- Examples of input-output devices (not examples)

CH.3-TYPES OF SOFTWARE

- Types of software : definitions of Operating system, Language processors, Utility


software, Application software.
CH.5-COMPUTER NETWORKING, MULTIMEDIA BASICS

- Definition of network, LAN, MAN, WAN, Internet


- Cloud computing
- Definition of Multimedia
CH.7-OPENOFFICE WRITER
PYTHON NOTES

 Modulus operator (%) :

a%b returns the remainder that we will get after dividing a with b. Eg-:
23%5 = 3
12%7 = 5

 Division operator (/) :

a/b simply divides the two operands and return the result in decimal form.
23/5 = 4.6
12/7 = 1.7142

 Floor Division operator (//) :

a//b simply divides the two operands and truncates (removes) the decimal part.
23//5 = 4
12//7 = 1

 int() :

It converts the enclosed data into integer i.e. non-fractional number.


int(2.948)= 2
int(-13.826)= -13

 float() :

It converts the enclosed data into float i.e. fractional number.


float(‘2.948’)= 2.948

 Data types in python :

Data Type Meaning Example


12
Integer Non-fractional numbers
-340
3.14
Float Fractional numbers
-9.99
Sequence of characters enclosed
“Ajay”
within single quotes (‘ ’) or
String ‘Aryan Garg’
double quotes (“ ”) is called
‘3.14’
string.

You might also like