πŸ”₯ LIVE πŸ‘©β€πŸ« Teachers: Host Live Tests  |  πŸŽ“ Students: Practice Class-wise Quizzes Go to Quiz Portal βž”

Computational Thinking and Programming Quiz 2

🐍 Computational Thinking & Programming Quiz 2 β€” Python Basics (Class 11 CS) Practice 15 CBSE Class 11 Computer Science (Code 083) MCQs on the basics of Python programming β€” introduction to Python, features of Python, execution modes, the Python character set, tokens (keywords, identifiers, literals, operators, punctuators), variables, l-value & r-value, and comments. Tap … Read more

Computational Thinking and Programming Class 11 Quiz 1

🧩 Computational Thinking & Programming Quiz 1 β€” Class 11 Computer Science Practice 15 CBSE Class 11 Computer Science (Code 083) MCQs on computational thinking and programming fundamentals β€” the problem-solving process, algorithms, decomposition, flowcharts, and pseudocode. These questions are ideal for quick revision, self-assessment, and classroom practice before a test or the board exam. … Read more

Computer Systems and Organisation Quiz 3

πŸ”’ Computer Systems & Organisation Quiz 3 β€” Number Systems & Encoding (Class 11 CS) Practice 20 CBSE Class 11 Computer Science (Code 083) MCQs on number systems β€” Binary, Octal, Decimal, and Hexadecimal, along with conversions between them β€” plus encoding schemes: ASCII, ISCII, and Unicode (UTF-8, UTF-32). Every conversion below has been double-checked … Read more

Computer Systems and Organisation Quiz 2

πŸ’Ύ Computer Systems & Organisation Quiz 2 β€” Types of Software (Class 11 CS) Practice 20 CBSE Class 11 Computer Science (Code 083) MCQs on types of software β€” system software (operating systems, system utilities, device drivers), language translators (assembler, compiler, interpreter), and application software (productivity, multimedia, and entertainment software). Tap any question to reveal … Read more

Computer Systems and Organisation Quiz 1

πŸ–₯️ Computer Systems & Organisation Quiz β€” Class 11 Computer Science (Chapter 1) Test your understanding of Basic Computer Organisation with this free 20-question CBSE Class 11 Computer Science (Code 083) quiz. It covers the fundamentals every board exam pulls from: hardware vs software, input & output devices, the CPU, primary & secondary memory, and … Read more

Introduction to Artificial Intelligence Question and Answer Class 9

Unit I- Introduction to Artificial Intelligence (817) Class 9 Introduction to Artificial Intelligence Fill in the Blanks : _______________test checks the machine’s ability to exhibit intelligent behaviour. [Turing test] __________________year is known as AI winter.[1974] Microsoft introduced the ________ software in 2014.[Cortana] ______________are based on data that Google collects about you.[Predictive searches] ______________is the type … Read more

Digital Documentation Question and Answer class 9 IT 402 (NCERT)

Digital Documentation Question and Answer class 9

Digital Documentation Question and Answer class 9 NCERT Solution Multiple Choice Questions Which of following is not a component of the Office Suite? a) Writer b) Impress c) Internet Explorer d) Base Answer:c) Internet Explorer   The most widely used word processing software in late 1970s was__________. a) Word Perfect b) Word c) Word Star … Read more

(Solved) Python String Exercise For Absolute Beginners

Python String Exercise-1 Here’s an exercise for beginners on creating and manipulating strings in Python: Create a variable called name and assign it a string value representing your name. Use the len() function to find the length of your name and assign the result to a variable called name_length. Print a message to the console … Read more

Create a CSV movies.csv to hold movie records like Movies ID Movies name and Rating (out of 5 stars) using the list.

Create a CSV movies.csv to hold movies’ records like Movies ID, Movies name, and Rating (out of 5 stars) using the list. from csv import writer import csv def create(): f = open(“e:\movies.csv”,”a”) dt = writer(f) dt.writerow([‘Movie_ID’,’Movie_Name’,’Movie_Rating’]) while True: mv_id= input(“Enter Movie ID:\t”) mv_name = input(“Enter Movie name:\t”) mv_rating = input(“Enter Movie Rating(out of 5 … Read more