CBSE CS and IP

CBSE Class 11 & 12 Computer Science and Informatics Practices Python Materials, Video Lecture

Showing posts with label Class 11 CS. Show all posts
Showing posts with label Class 11 CS. Show all posts
19 Dec

Cyber Law IT ACT 2000

What is cyber Law?Cyber law, also known as cybercrime law, is legislation focused on the acceptable behavioral use of technology including computer hardware and software, the internet, and networks.Cyber law helps protect users from harm by enabling the investigation and prosecution of online criminal activity.It applies...
13 Sep

Class 11 Computer Science Video Lectures

CBSE Class 11 CS Term-Wise SyllabusUNIT - 1: Computer System and OrganisationBoolean AlgebraHistory, IntroductionLogical Operator and Operand, Truth Table, Boolean ExpressionsLogic Gates (NOT, AND, OR, NAND, NOR, XOR, XNOR)Universal Gates - NAND, NORBasic Theorems of Boolean algebraDeMorgan's Law with ProveCreating Logic...
10 Aug

String Data Type in Python

String Definition / What Is Strings in Python?Python string is characters/numbers/special characters enclosed in quotes of any type - single quotation marks (' '), Double quotation marks ( " ") and triple quotation marks (" " "). An empty string is a string that has 0 characters (i.e. it is just a pair of quotation marks)...
07 Aug

Cyber Safety And Security (CBSE Class 11)

What is cyber safety/Internet Safety?Today's age cannot be thought without the Internet, even in dreams. Nowadays every person is being a victim of online fraud. Mostly children are caught in this trap so the first thing we need to know is how to protect a child from online fraud? The government has started its cyber safety...
16 Jul

Comments (Single/Multiline) in Python

What is Comment in Python? Any remark such as who made the code and the purpose in the form of a note can be added in the program using comments. Comments are not executed by the interpreter, they are added with the purpose of making the source code easier to understand by humans. The documentation of the code...