Cricket Game- Python Project for CBSE Class 12

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 to 6. 2. The computer will also select a number. 3. While batting, if the number selected by you and computer is different, then … Read more

Number System Converter- Python Project for CBSE Class 11

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 is to be converted:”)) print(“\n”) ######################################################################@ if to==2 or to==8 or to==16 or to==10: out1=0 power=0 while inp>0: out1+=org**power*(inp%10) inp//=10 power+=1 print(“after conversion the result … Read more

CBSE Computer Science Practical Question Paper Sample

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 last, second with second last …. Print the list in reverse order.(7 marks) 2- Write a program to create interface with MySQL database and … Read more

What is MongoDB?

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 a platform-independent interface which means that it can run on any platform like Windows, Linux, Unix, etc. It was designed to work with community servers. … Read more

Operations on text file

Python Data File Handling operations on text file A text file consists of a sequence of lines. A line is a sequence of characters, stored on permanent storage. In a text file, each line is terminated by a special character, known as End Of Line (EOL). Text file can be created using any text editor. … Read more

What is Django framework?

What is Django framework? Django is a high-level Python web framework that enhances fast development and clean and simple design. It is a framework for web application development. Django helps eliminate repetitive tasks by making the development process an easy and time-saving experience source. It took the name of the famous guitarist Django Reinhardt. It … Read more

CBSE Computer Science Class 12 Unit-2: Computer Networks

Unit-2: Computer Networks What is Computer Network? A computer network is a group of two or more interconnected computer systems, which share their data to each other. You can establish a computer network using either cable or wireless media.   Advantages of Computer Network: Resource Sharing Improved communication Reduced communication cost Centered storage   Elementary … Read more

What is tkinter in python

What is tkinter in python? Tkinter is a standard GUI (Graphical User Interface) library for Python. It is a built-in module that comes with Python and allows programmers to create windows, dialogs, buttons, menus, and other GUI elements for their Python applications. Tkinter is based on the Tcl/Tk GUI toolkit, which was developed in the … Read more