mycstutorial

Sorting Techniques in Python – Notes

sorting_techniques_bubble_insertion

Sorting Techniques in Python Sorting is a technique to arrange the data either in ascending or descending order. There are two types of Sorting techniques: Bubble Sorting Insertion Sorting What is Sorting? Sorting means arranging elements in a specific order – ascending (increasing order) or descending order (decreasing order) or alphabetical order. There are multiple […]

Sorting Techniques in Python – Notes Read More »

Introduction to Python Module – Notes

python module math random statistic

Topics: Introduction to Python modules: Importing module using ‘import ‘ and using from statement, Importing math module (pi, e, sqrt, ceil, floor, pow, fabs, sin, cos, tan); random module (random, randint, randrange), statistics module (mean, median,mode) Module A module is a grouping of functions. The program is divided into different parts under different levels, called

Introduction to Python Module – Notes Read More »

Term Wise Class 11 Informatics Practices Syllabus: 2021-22

2021-22 Term Wise Syllabus Class 11 Informatics Practices Class 11 and 12 Informatics Practices Term Wise Syllabus Click Here – Download Informatics Practices Syllabus 2020-21 Complete CLASS XI Code No. 065 2021-22 At the end of this course, students will be able to: Identify the components of the Computer System. Create Python programs using different

Term Wise Class 11 Informatics Practices Syllabus: 2021-22 Read More »

Term Wise Class 12 Informatics Practices Syllabus 2021-22

Term Wise Class 12 Informatics Practices Term Wise Syllabus Download Now Informatics Practices CLASS XII Code No. 065 2021-2022 Prerequisite: Informatics Practices – Class XI Learning Outcomes At the end of this course, students will be able to: Create Series, Data frames and apply various operations. Perform aggregation operations, calculate descriptive statistics. Visualize data using

Term Wise Class 12 Informatics Practices Syllabus 2021-22 Read More »

CBSE Computer Science Syllabus for Class 11 and 12 Download PDF

Computer Science Syllabus 2023-2024 Class – XI Computer Science (Code No. 083) – 2023-24 1. Learning Outcomes Student should be able to 2. Distribution of Marks Unit No. Unit Name Marks Theory Periods Practical Periods I Computer Systems and Organisation 10 10 10 II Computational Thinking and Programming – 1 45 80 60 III Society,

CBSE Computer Science Syllabus for Class 11 and 12 Download PDF Read More »

CTET Syllabus 2021: Download PDF & Check Subject-wise Exam Syllabus

The CTET syllabus is the most important component of the study and preparation. It has got a broad syllabus and candidates must prepare each and every topic to score well. Each year, the Central Board Of Secondary Education (CBSE) conducts the CTET Exam to recruit candidates for the teacher’s posts. Knowing the syllabus is the first step towards a better preparation for the CTET exam 2021.

CTET Syllabus 2021: Download PDF & Check Subject-wise Exam Syllabus Read More »

Python Revision Tour I : Basics of Python – Notes

Class 12 computer science Python revision tour - I

Class 12 – Computer Science : Python Revision Tour – I [A] – Basics of Python Topics are : INTRODUCTION A python is an object-oriented, interpreted, high-level language and a very powerful programming language. Developed by Guido Van Rossum  in 1991. INSTALLATION Download it from www.python.org  and install your computer by clicking on the installation

Python Revision Tour I : Basics of Python – Notes Read More »

Python Revision Tour – II : String, Lists, Tuples, Dictionary – Notes

Class 12 Computer Science Python Revision Tour – II Notes String/Text Handling in Python What is a String? Python strings are characters enclosed in quotes of any type – single quotation marks, double quotation marks, triple quotation marks. An Empty string is a string that has 0 characters, i.e. ‘ ’ , “ ”, “““

Python Revision Tour – II : String, Lists, Tuples, Dictionary – Notes Read More »

Working with Functions in Python – Download Note pdf

Function-flow-of-execution

Working with Functions in Python (A Complete Notes) Functions – Introduction Why do we need Functions? It is easy to work with small problems because its solution is also small.  When the problem becomes complex, the size and complexity of the program also increased, and it becomes difficult and cumbersome for a programmer to manage

Working with Functions in Python – Download Note pdf Read More »

CTET and Previous Years Question Papers

Central Teacher Eligibility Test What is CTET? Central Teacher Eligibility Test (CTET) is a national-level exam conducted by the Central Board of Secondary Education (CBSE) twice a year to determine the eligibility of candidates for appointment as teachers in Classes 1-8. There are two CTET papers in the exam, that is, Paper-I and Paper-II. Candidates

CTET and Previous Years Question Papers Read More »

Using Python Libraries – Notes

Using Python Libraries – Notes Using Python libraries: create and import Python libraries. Using libraries: Mathematical, Random, String and Datetime. What is Library? Library refers to the collection of related module(s), which works together to fulfil specific requirements or help us in making any application. The library contains built-in modules (written in C) that provide

Using Python Libraries – Notes Read More »

Data Structure: Stacks – Notes

Python Data Structure Stacks Notes & Important Points Introduction: A data structure is a group of data that have different data types which can be accessed as a unit. It has well-defined operations, properties and behaviours. Data structure is a way of storing and organising information in the computer. General data structure types include array,

Data Structure: Stacks – Notes Read More »

Data Structure : Searching and Sorting – Notes

The process of placing or rearranging a collection of elements into a particular order is known as sorting. Bubble sort is the simplest sorting algorithm that works by repeatedly swapping the adjacent elements in case they are unordered in n-1 passes. In Selection Sort, the smallest element is selected from the unsorted array and swapped

Data Structure : Searching and Sorting – Notes Read More »

Data Communication – Notes

Data Communication Notes and Important Points • Data communication refers to the exchange of data between two or more networked or connected devices like laptops, PC, printers, routers etc.• Sender, receiver, messages, channel and protocols are major components of data communication.• In data communication, transmission media are the links that carry messages between two or

Data Communication – Notes Read More »

You cannot copy content of this page

Scroll to Top