Unit 2 Electronic Spreadsheet (Advanced) IT Code 402 Class 10 Book Solutions

Electronic Spreadsheet (Advanced) IT Code 402 Class 10 Book Solutions Important Links Click for IT 402 Practical File Questions and to download sample Practical File Click for IT 402 Class 10 Book Solutions | Unit 4 Web Applications and Security Click for IT 402 Class 10 Book Solutions | Unit 3 RDBMS(Basic) Click for IT … Read more

Information Technology Code 402 Class 10 Book Solutions | Unit 3 RDBMS(Basic)

Information Technology Code 402 Class 10 Book Solutions Important Links Click for IT 402 Practical File Questions and to download sample Practical File Click for IT 402 Class 10 Book Solutions | Unit 4 Web Applications and Security Click for IT 402 Class 10 Book Solutions | Unit 2 Electronic Spreadsheet (Advanced) Click for IT … Read more

IT 402 Class 10 Practical File Questions and free Download Sample File

The Above screenshot is from CBSE revised Curriculum and click for detailed revised curriculum of Class X IT(402) Click to Download Practical File Click for Class X IT (402) Book Practical File of IT 402 Weightage is 10 marks We should write minimum 2 programs of each of the following : Unit 1: Digital Documentation … Read more

10+ Bubble Sort Programs (Solved) in python -practice questions

Bubble Sort Programs for Practice Q1. Write a program to arrange the following list in ascending order using bubble sort. Original List = [23, 34, 54, 2, 12, 28] Output List = [2, 12, 23, 28, 34, 54] Q2. Write a program to arrange all alphabets of “csiplearninghub” into descending order using bubble sort. Q3. … Read more

Insertion Sort in Python class 11 with important examples

Insertion Sort in Python with example program What is Insertion Sort in Python? Insertion sort is simple sorting algorithm. It works in the same way as we (teachers) arranges answer sheets of students according to their roll number. This algorithms simply divides the list into two parts ie sorted (left side) and unsorted(right side). It … Read more

Sorting in Python class 11 Notes with important Questions

What is Sorting in Python ? Sorting means to arrange elements in increasing or decreasing order. Sorting algorithm tells us that how we are going to arrange elements in increasing or decreasing order. Output of sorting algorithm depends on the type of comparison operator used to arrange elements. The sorting algorithm takes the elements(numbers or … Read more

Bubble Sort in Python Class 11 Notes – Important Questions

Bubble Sort in Python What is Bubble Sort ? This is a very simple or basic algorithm to arrange elements in a particular order. This algorithm compares repeatedly the adjacent elements of list and swap them if they are not in order. This process of comparing adjacent elements continue until the complete list is sorted. … Read more

15+ Best Error Finding Questions (Solved) in Python

Table of Content: Python Error Finding Questions – Test 1 Python Error Finding Questions – Test 2 Python Error Finding Questions – Test 3 Python Error Finding Questions – Test 1 Q1. Find error(s) in the following code(if any) and rewrite code and underline each correction: x= int(“Enter value of x:”) for in range [0,10]: … Read more

CBSE Class 11 Comprehensive Notes of Strings in Python with Questions

What is String in Python? Strings are contiguous series of characters enclosed in single or double quotes. Python doesn’t have any separate data type for characters so they are represented as a single character string.  For eg:  >>> s_name = “Amit” # s_name is a variable storing a string.   >>>s = ‘a’  #String can also be enclosed in single  quotes … Read more

error: Content is protected !!