Module 1 QB
Module 1 QB
(2 Marks)
Answer:
Software processing packages are application programs designed to perform specific tasks
such as word processing, spreadsheet calculations, database management, or image
editing.
Example:
Microsoft Word (word processing), Microsoft Excel (spreadsheet processing).
Answer:
Algorithm:
1. Start
7. End
Answer:
Definition:
An algorithm is a step-by-step procedure to solve a given problem in a finite number of
steps.
Disadvantages:
Answer:
Data: Raw facts and figures without context.
Database Management System (DBMS): Software used to store, retrieve, and manage
data in databases.
Answer:
Types of Operating Systems:
• Batch OS
• Time-Sharing OS
• Distributed OS
• Network OS
• Real-Time OS
• Mobile OS
Answer:
Types of DML:
Answer:
Internet connection methods:
• Dial-Up
• Mobile Data
• Ethernet
Answer:
Answer:
Answer:
Problem Definition involves identifying inputs, outputs, and processing steps to solve a
task.
Example:
Find the largest among 3 numbers.
• Inputs: A, B, C
Answer:
12. Write an algorithm to check if a number is even or odd. Give advantages. (5 Marks)
Answer:
Algorithm:
1. Start
2. Input a number N
3. If N % 2 == 0, print “Even”
5. End
Advantages:
Answer:
Answer:
Three Tiers:
Diagram:
lua
CopyEdit
+--------------+ +------------+
15. State and explain with diagrams the different layers of OSI model. (10 Marks)
Answer:
OSI Model Layers (Top to Bottom):
1. Application
2. Presentation
3. Session
4. Transport
5. Network
6. Data Link
7. Physical
Diagram:
+------------------+ Application
+------------------+ Presentation
+------------------+ Session
+------------------+ Transport
+------------------+ Network
+------------------+ Physical
16. Explain with the help of diagram Types of Database architecture. (10 Marks)
Answer:
Types:
Diagram:
+--------------+ +------------+
17. Classify the different types of computer Language with examples. (10 Marks)
Answer:
4. 4GL – SQL
Answer:
SQL Example:
);
Answer:
DDL Commands:
sql
CopyEdit
);
20. Write an algorithm and flowchart to find largest among three numbers. (10 Marks)
Answer:
Algorithm:
1. Start
2. Input A, B, C
4. Else if B > C
5. Else C is largest
6. Display result
7. End
Flowchart:
css
21. Use SQL queries to create, insert values and drop a table in database. (10 Marks)
Answer:
-- Create Table
);
-- Insert
-- Drop