Computer Science Revision Notes CBSE Class 12
Computer Science Revision Notes CBSE Class 12
We think the first step is motivating yourself to revise. What are you trying to achieve
here? What’s your ultimate goal? Make a schedule for your revision and be realistic
about it. Figure out how much time you can spend on a task each day. The important
part of exam preparation and the key to success, as the more you revise these notes.
These revision notes are prepared by our finest and experienced teachers. You can
download class 12 Computer Science Revision Notes in PDF format. These Revision
Notes are also available in the myCBSEguide webs
Download CBSE Revision Notes for CBSE Class 12 Computer Science Boolean
Algebra (OLD) Role of Logical Operations in Computing. Binary-valued Quantities,
Boolean Variable, Boolean Constant and Boolean Operators: AND, OR, NOT; Truth
Tables; Closure Property, Commutative Law, Associative Law, Identity law, Inverse
Law, Principle of Duality, Idempotent Law, Distributive Law, Absorption Law, Involution
Law, DeMorgan's Law and their applications; Obtaining Sum of Product (SOP) and
Product of Sum (POS) form the Truth Table, Reducing Boolean Expression (SOP and
POS) to its minimal form, Use of Karnaugh Map for minimization of Boolean
expressions (up to 4 variables); Application of Boolean Logic: Digital electronic circuit
design using basic Logic Gates (NOT, AND, OR, NAND, NOR) Use of Boolean
operators (NOT, AND, OR) in SQL SELECT statements Use of Boolean operators
(AND, OR) in search engine queries.
Go To Downloads
Download CBSE Revision Notes for CBSE Class 12 Computer Science Communication
Technologies (OLD) Evolution of Networking: ARPANET, Internet, Interspace Data
Communication terminologies Transmission mediaNetwork devices Network Topologies
and types Network ProtocolMobile Telecommunication Technologies Protocols for Chat
and Video Conferencing VOIP Network Security Concepts India IT Act, Cyber Law,
Cyber Crimes, IPR issues, hacking.Introduction To Web services Domain Names E-
commerce payment transactions using online banking, mobile banking and payment
apps and services.
Go To Downloads
myCBSEguide App
Join India's most trusted study app used by 70 Lakhs students and teachers to study
on the go. Learn and practice with myCBSEguide Sample Papers, Test Papers,
Revision Notes, Previous year question papers, NCERT solutions, Online MCQ tests,
Homework Help and much more from class 3 to 12 (all subjects)
Interactive Mode: Interactive Mode, as the name suggests, allows us to interact with
OS.
Script Mode: In script mode, we type Python program in a file and then use interpreter
to execute the content of the file.
Assignment Operator: =, +=, -=, *=, /=, %=, **= and //=
Module: A module is a file containing Python definitions (i.e. functions) and statements.
Standard library
List: Like a string, list is a sequence of values. List can be of any type.
Dictionaries: A dictionary is like a list, but more in general. In a list, index value is an
integer, while in a dictionary index value can be any other data type and are called keys.
Tuples: A tuple is a sequence of values, which can be of any type and they are indexed
by integer.
Encapsulation: combining of data and the functions associated with that data in a
single unit
Data Hiding: the mechanism of hiding the data of a class from the outside world
Abstraction: providing only essential information to the outside world and hiding their
background details
Inheritance: forming a new class (derived class) from an existing class (called the base
class).
Dynamic Binding: the linking of function call to the function definition is done during
the execution of the program.
(Classes in Python)
In Python a name, storing any type of data, can refer to only one thing at a time.
The names always belong to the namespace where they are bound.
Names declared with global keyword have to be referred at the file level.
LEGB rule: when a name is encountered during the execution of the program, it
searches for that name in the following order:
G. Global (module) - It searches for global modules or for names declared global