Python Basics Made Easy: Simple Programs with Clear Explanations for Beginners

basics python

Python is a high-level, interpreted programming language known for its simplicity and readability. It is widely used for: Key Features: Python was created by Guido van Rossum and first released in 1991. Here are some Python programs: 1. Write a program to accept 2 numbers from the user and print their sum. output: Explanation: a … Read more

Python MCQ Set-1

python mcq

1. What is the output of print(2 ** 3)?A. 6B. 8C. 9D. 5 2. Which of the following is a valid variable name in Python?A. 1valueB. value1C. @valueD. value-1 3. What is the data type of print(type(“Hello”))?A. intB. boolC. strD. float 4. Which keyword is used for defining a function in Python?A. funcB. defineC. defD. … Read more

Word Processor: Tabular Presentation

Word Processor: Tabular Presentation

Here are some MCQs from this chapter. 1. What is a table? a) A list of bullet pointsb) A grid of rows and columns forming cellsc) A paragraph with bordersd) A single cell with text 2. The lines marking cell boundaries are called: a) Bordersb) Gridlinesc) Marginsd) Dividers 3. Which tab is used to insert … Read more

HW OF NEXT CLASS

Write the following programs in QBASIC: 1.Reema visited a book fair with ₹1,000. She bought 2 storybooks costing ₹175 each and 3 activity books costing ₹120 each. She also bought a diary for ₹90.How much money did she spend in total, and how much money is left with her after all the purchases? 2.A school … Read more