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

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] [showhide type=”links1″ more_text=”Show Answer” less_text=”Hide Answer”]#Bubble Sort Program 1 Ans. L = [23, 34, 54, 2, 12, … 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

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

CBSE Class 11 Python Dictionary Comprehensive Notes with Practice Questions

What is Python Dictionary? A python dictionary is a collection of elements where each element is a combination of Key-Value pair. Each value/values is associated with a unique key. All the Key-Value pairs are enclosed in Curly braces. In other words we can say that ” Dictionaries are mutable, unordered collection of elements in the … Read more

CBSE Class 11 Python Dictionary Methods Comprehensive Notes with Practice Questions

Python Dictionary Methods: There are many methods of dictionary in python. Let’s do some of the important function with example. len( ) : This function returns the length of Dictionary means, it returns the total number of Key-Value pairs present in the dictionary. for example: A = {1 : “One”, 2 : “Two”, 3 : … Read more