atanubisws@gmail.com
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
Types of Cables in Networking
1. Twisted Pair Cable Advantages: Disadvantages: 2. Coaxial Cable Advantages: Disadvantages: 3. Fiber Optic Cable Advantages: Disadvantages:
Types of Network Topologies with Advantages & Disadvantages
1. Bus Topology Definition: A single central cable (backbone) connects all devices in a linear arrangement. Data travels in both directions, but if the main cable fails, the entire network is affected. It is simple and cost-effective for small networks. ✔ Advantages: ✘ Disadvantages: 2. Star Topology Definition: All devices connect to a central hub … Read more
Ethics
Intellectual Property Rights (IPR) protect creations like inventions, artistic works, and brand identities. They include copyright, patents, and trademarks, preventing unauthorized use. IPR ensures financial benefits for creators and encourages innovation by safeguarding their intellectual assets from misuse or duplication. Copyright legally protects original literary, artistic, musical, and software works from unauthorized copying or distribution. … Read more
How to Create a Tic-Tac-Toe Game in Python
Tic-Tac-Toe is a simple and fun game that can be easily implemented in Python. In this article, we will build a command-line version of Tic-Tac-Toe step by step. Steps to Create Tic-Tac-Toe in Python Full Python Code for Tic-Tac-Toe Explanation of the Tic-Tac-Toe Code This Python code implements a simple Tic-Tac-Toe game that runs in … Read more
Algorithm solutions
7. Write an algorithm to enter the name and marks of Mathematics for 3 students and find the average marks of the students and print the result. Step1:start Step2: Store the names of 3 students in a$,b$, and c$ respectively. Step3: store the marks of 3 students in 3 subjects in x,y, and z respectively. … Read more