(Chapter Wise) Python Basic MCQs for Class 11
Python Basic MCQ for CBSE Class 11 In this section we will learn the python fundamental MCQ for CBSE class 11 Computer Science. This exercise will also help the students…
CS-IT-IP-AI and Data Science Notes, QNA for Class 9 to 12
Python Basic MCQ for CBSE Class 11 In this section we will learn the python fundamental MCQ for CBSE class 11 Computer Science. This exercise will also help the students…
Love Calculator Python Program Source Code: #https://cbsepython.in from string import ascii_lowercase import random import time name1 = input("Please type Your Name >\n") name2 = input("Please type Your Crush Name >\n")…
Simple Text Editor- Python Project for Class 12 Source Code: #https://cbsepython.in import sys import os import shutil def leave(): sys.exit("You are exiting from Editor") def read(): try: file_name = input("Enter…
Bank Management- Python Project Class 12 Source Code: #https://cbsepython.in print("****BANK TRANSACTION****") #creating database import mysql.connector mydb=mysql.connector.connect (host="localhost",user="root", passwd="admin") mycursor=mydb.cursor() mycursor.execute("create database if not exists bank") mycursor.execute("use bank") #creating required tables…
Rainbow Generator-Python Program Source Code: import turtle colours= wn=turtle.Screen() wn.bgcolor('black') skk=turtle.Turtle() skk.speed(0) skk.width(1.5) skk.hideturtle() skk.left(90) x=0 a=100 b=45 while x<len(colours): skk.color(colours) skk.penup() skk.setpos(b,0) skk.pendown() skk.circle(a,180,4000) skk.right(180) x=x+1 b=b+1.5 a=a+1.5 turtle.mainloop()…
Simple Calculator- Python Project for Class 11 Source Code: #Creater info print("cbsepython.in:") print(" covering all content for the cbse computer science students ") print(" ") print("These Are the folowing set…
Cricket Game- Python Project for CBSE Class 12 Source Code: # Cricket Game print(""" ~~~~~~~~~~ Game of Cricket ~~~~~~~~~~ Instructions: 1. You have to select any random number from 1…
Number System Converter- Python Project Source Code: # -*- coding: utf-8 -*- """ @author: cbsepython """ while 1>0: inp=int(input("enter the number:")) org=int(input("enter it base:")) to=int(input("enter the base in which it…
Computer Science Practical Question Paper Sample A.I.S.S.C.E. Practical Examination Subject: Computer Science (083) Time 3 Hrs/MM:30 SET- 1 1- Write a program to input a list and interchange first with…
What is MongoDB? MongoDB is a cross-platform, simple document-oriented NoSQL database that provides high performance, high availability and easy scalability. It is used for high volume data storage. It is…