Class 9 Information Technology Sample Paper Term 2 Set-1

Class 9 Information Technology Sample Paper Term 2 Set-1 Information Technology (Subject Code: 402)  Class: IX (Term 2 Examination) Time Allowed: 1 Hour/ Max Marks: 25 General Instructions:  There are 3 Sections in this paper. Attempt all questions. There is internal choice in Section C. SECTION: A Multiple Choice Questions: (5 x 1=5)   1. … Read more

Random Module in Python Class 11-12 Notes

Random Module in Python Class 11-12 Notes The Random module in Python is an important topic in the Class 11 and Class 12 Computer Science syllabus and is widely used in practical programming. It provides built-in functions to generate random numbers, random choices, and random sequences, which are useful in games, simulations, and data-related programs. … Read more

Class 11 IP Sample Paper Term 2 Set 3

Class 11 IP Sample Paper Term 2 Set 3 TERM II – 2021-22 Time Duration – 2 hours Maximum Marks : 35 General Instructions:- 1.This question paper contains three parts A,B,C Each part is compulsory . 2.Section A – contains 7 questions each of 2 marks 3. Section B- contains 3 questions each of 3 … Read more

Class 11 IP Sample Paper Term 2 Set 2

Class 11 IP Sample Paper Term 2 Set 2 Term-2 Examination 2021-22 Class: 11    Subject: Informatics Practices Subject Code: 065 Duration : 2 hrs. Max Marks : 35 General Instructions • The question paper is divided into 3 sections – A, B and C • Section A, consists of 7 questions (1-7). Each question … Read more

Class 11 IP Sample Paper Term 2 Set 1

Class 11 IP Sample Paper Term 2 Set 1 Term-2 Examination 2021-22 Class: 11    Subject: Informatics Practices Subject Code: 065 Maximum Marks: 35/ Time: 2 hours   General Instructions ♦ The question paper is divided into 3 sections – A, B and C ♦ Section A, consists of 7 questions (1-7). Each question carries 2 … Read more

How to draw Indian Flag Using Turtle Python Program

How to draw Indian Flag Using Turtle Python Program   Source Code: import turtle from turtle import* #for output screen screen = turtle.Screen() # Defining a turtle Instance t = turtle.Turtle() speed(-2) # initially penup() t.penup() t.goto(-400, 250) t.pendown() # Orange Rectangle #white rectangle t.color(“orange”) t.begin_fill() t.forward(800) t.right(90) t.forward(167) t.right(90) t.forward(800) t.end_fill() t.left(90) t.forward(167) # … Read more

Input a welcome message and display it Python Program

Input a welcome message and display it Python Program   welcome_message=input(“Enter welcome message : “) print(“Hello, “,welcome_message)     Output: Enter welcome message : “Welcome to https://cbsepython.in. This is the best place to learn CBSE Computer Science. Here you can find chapterwise notes for class 11-12, Practice Question Papers, Python Projects for Class 11 and … Read more

Input a string and determine whether it is a palindrome or not; convert the case of characters in a string

Input a string and determine whether it is a palindrome or not; convert the case of characters in a string   # Python Program to check whether string is palindrome or not   str=input(“Enter a string:”) w=”” for element in str[::-1]: w = w+element if (str==w): print(str, ‘is a Palindrome string’) else: print(str,’ is NOT … Read more

Copywrite © 2020-2026, CBSE Python,
All Rights Reserved