I PUC Final Notes
I PUC Final Notes
d. Photoshop
2. 1GB = ?
c. 1024 MB
b. Keyboard
B) ISCII is an encoding scheme developed to support all the characters of every written
language of the world.
b. Only A is correct
d. 10000000
d. Internet of Things
d. max()
b. #
15. What will be the output of the following code: print((4 + 3) / 2)?
c. 3.5
PART B
17. The mechanism of converting data into an equivalent cipher using specific code is
called encoding.
19. The symbol used for input and output operation in a flowchart is oval.
Interactive Mode
Script Mode
22. Smart cities:
Smart cities use digital technologies like IoT, AI, and big data to improve infrastructure,
enhance public services, and optimize resource usage for a better quality of life.
Binary: 2
Decimal: 10
24. Artificial intelligence:
AI refers to systems that mimic human intelligence. Example: Siri.
25. Pseudo code to add two numbers:
Start
End
Oval: Start/End
Parallelogram: Input/Output
Indexing
Slicing
PART C (3 Marks Each)
a) Data Bus: A communication pathway that transfers data between the processor,
memory, and peripherals in a computer system. It determines the amount of data a
system can transfer at one time.
b) Address Bus: Used to specify the address of a memory location or device the CPU
intends to interact with.
c) Control Bus: Transmits control signals to coordinate various operations, like
reading/writing data and managing hardware components.
29. What is an Operating System? Mention its functions.
An operating system (OS) is system software that manages hardware and software
resources in a computer system.
Functions of OS:
1. Process Management: Schedules and manages processes for efficient CPU usage.
Hexadecimal Number System: A base-16 number system using digits 0–9 and letters A–
F to represent values.
Applications:
Virtual Reality (VR): Uses devices like headsets to create simulated environments
where users can interact in real time, e.g., VR gaming or training simulations.
Steps:
1. Start
3. Calculate Area = .
4. Output Area.
5. End
Diagram Description:
3. Implement the Solution: Write code or perform steps to solve the issue.
4. Test and Debug: Check if the solution works and fix errors.
Advantages of Functions:
Components:
1. Input Unit: Accepts data and instructions.
3. Arithmetic and Logic Unit (ALU): Performs calculations and logical operations.
4. Control Unit: Directs the flow of data and instructions between components.
5. Output Unit: Displays the processed results.
Diagram:
Definition: Data refers to raw facts and figures without context, which can be processed
into meaningful information.
Structured Data:
Organized and stored in a defined format, such as tables with rows and columns.
Examples:
Databases (SQL databases).
Spreadsheets.
Advantages:
37. What is an Operating System? Explain the Graphical User Interface (GUI).
An Operating System manages hardware and software, ensuring efficient operation of a
computer.
Graphical User Interface (GUI):
1. Allows users to interact with the system using visual elements like icons, menus, and
windows.
2. Reduces the need for command-line instructions, making systems user-friendly.
Features of GUI:
3. Drag-and-drop functionality.
4. Customizable appearance.
Robotics: A branch of engineering that designs, builds, and operates robots to perform
tasks autonomously or semi-autonomously.
Robots: Machines programmed to perform specific tasks, often replacing human effort
in repetitive or hazardous environments.
Example:
5. Generality: Should solve a class of problems, not just one specific case.
Advantages:
1. Code Reusability: Avoid repetition by using functions multiple times.
Example:
return a + b
print(add_numbers(3, 5)) # Output: 8
41. What is Mapping Data Type in Python? Explain Dictionary with an Example.
Mapping Data Type: Maps keys to values, where each key-value pair is unique.
Dictionary: A built-in Python data type that stores key-value pairs.
Syntax:
Features:
Example:
i) 10010.101(2) =? (10)
i. x, y=2,3
x, y=x+2, y+3
print (x, y)
ii. a=1
a+=3
print(a)
iii. name=” python”
iv. a=2
print(a>=20)
v. x, y=8,6
x, y=y, x
print (“x=”, x,” y=”, y)
44.Write a python program to generate the pattern
12
123
1234
12345