CBSE CS and IP

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

Showing posts with label Class 12 CS. Show all posts
Showing posts with label Class 12 CS. Show all posts
17 Mar

XII CS CRASH COURSE eBook (PDF) 2020-21

 Purchase the Class 12 CS CRASH COURSE ebook from here. It is based on the Revised Syllabus of CBSE and Covers UNIT-1 and UNIT-3 of Class 12 CS CBSE Syllabus.Free Video Lectures are available on the youtube channel cbsecsip, click here to access the free video lectures. Note:- eBook...
22 Dec

What is Plagiarism and How to avoid it

 Table of contentsWhat is Plagiarism?Acts that involve PlagiarismHow to Avoid PlagiarismWhat is Plagiarism?Plagiarism is stealing someone else’s intellectual work (can be an idea, literary work or academic work, etc.) and representing it as your own work without giving credit to the creator or without citing the source...
21 Dec

Net Etiquettes (Netiquettes)

 What is Net Etiquettes (Netiquettes) or Net+etiquetts?You must be aware of the term etiquette. This means the general behavior you must follow in your daily life. There is a little difference between etiquette and net etiquette. There are some rules that you must obey when you are online and using the Web/internet....
20 Dec

Digital footprint

What is a Digital footprint?A digital footprint is an impact you create on the Web through your online activity, which incorporates browsing, interactions with others, and publication of content. In other words, it can be considered as the data trail – intentional and unintentional - you leave behind while you surf...
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...
18 Dec

IPR (Intellectual Property Rights)

What is IPR?If a person creates something by himself he posses the right on it, this right is called Intellectual property rights (IPR).IPR gives the right to the creator over the use of his/her creation for a certain period of time.Intellectual property rights can be obtained at the national level/regional level.Types...
08 Dec

MYSQL ORDER BY

 MYSQL ORDER BY clauseWhen you use the SELECT statement to query data from a table, the result set is not ordered. It means that the rows in the result set can be in any order.To sort the result set, you add the ORDER BY clause to the SELECT statement. The SQL ORDER BY clause is used to sort the records in the...
08 Dec

MYSQL GROUP BY and HAVING

 MySQL  GROUP BYThe GROUP BY statement in SQL is used to arrange data into groups with the help of some functions. GROUP BY statement is used to retrieve grouped records based on one or more columns.The aggregate function on SELECT Statement can be used with the GROUP BY Statement.Aggregate Functions : AVG(),COUNT(),MAX(),MIN(),SUM().The...
09 Nov

CLASS 12 SAMPLE QUESTION PAPER SOLUTIONS (COMPUTER SCIENCE) - 2020-21

 Hope you are doing great. I have prepared a question-wise solution for cbse class 12 informatics practices sample question paper 2020-21. I have also discussed cbse class 12 informatics practices question paper pattern 2020. To download the question paper click here.To check the video you can click on the below-given...
03 Sep

Data Structures in Python (List / Stack / Queue)

Code Example:Code for List, Stack and Queue: https://bit.ly/3bl0...
08 Aug

Python MySQL Connector - Download, Install and Use with Examples

When you want to create a real-life application it is required to interact with Database through your program. This can be done through an interface, which provides you with the facility to connect to Database directly through your Python program. As per class 12 CBSE computer science, it is required that a student must...
04 Jul

Types of Formal Arguments in Python Functions (Class 12 Computer Science)

A Python Function can have two types of Arguments / Parameters, First is Actual Arguments and Second is Formal Arguments. In this post I have discussed different types of Formal Arguments.  Types of formal arguments in Python Functions Variables that we use in function definition to receive the values...
03 Jul

Types of Arguments / Parameters in Python Functions (Class 12 Computer Science)

In Python Functions, we define Functions by using the def keyword. After writing def keyword we have to provide function name, it will have parenthesis after it. This may contain Parameter / Arguments. def square( <Parameters> ): . . <function body> . . square ( <argument>...
01 Jul

def & return Keyword and advantages of Python Function

In my Previous Post, I talked about the Introduction of functions, where we discussed how to create the first python function. At the time of the creation of the first python function, we used two important keywords def and return. In this post, I am going to discuss those two important terms. read the...
30 Jun

Introduction to Functions in Python (Class 12 Computer Science)

If you are looking for Python Functions Introduction and want to learn Python Functions from Basics, you have landed on the correct page.  Here you will get to know the basics of Python Function, I will discuss all the basic details from What is Function? How to Write your Own Function.  If...