100+ Important Database questions for class 12
Important Database questions for Class 12 1. What is database? Database is a collection of interrelated data. 2. What is database system? A combination of computer based record keeping system…
CS-IT-IP-AI and Data Science Notes, QNA for Class 9 to 12
CBSE Computer Science with Python class 12
Important Database questions for Class 12 1. What is database? Database is a collection of interrelated data. 2. What is database system? A combination of computer based record keeping system…
Class 12 Computer Science Unit Test Paper Unit Test – I ( 2021-22) Q.1 a) Name the Python Library modules which need to be imported to invoke the following functions…
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…
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…
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…
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…
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…
Python Programs for printing pyramid patterns (Using for loop/ nested for loop) Pattern-1 for i in range(1,6): for j in range(i): print(" * ", end = "") print( ) Output:…
Python while loop exercises for CBSE Computer Science 1- Python program to print First 10 Even numbers using while loop num = 2 while(num<=20): print(num) num = num + 2…