CUET PG 2021 — Computer PYQ
CUET PG | Computer | 2021Informal high-level description of an alrogithm in English is called
Choose the correct answer:
- A.
function
- B.
class
- C.
Pseudo code
(Correct Answer) - D.
None of the above
Pseudo code
Explanation
Solving: Logic and Definition
Algorithm ko represent karne ke alag-alag level hote hain. Pseudocode unka ek "English-like" representation hai jo programming language aur aam bhasha ke beech ka hissa hai.
1. Representation Equation:
Agar hum complexity aur detail ke hisaab se dekhein:
Algorithm Idea→Pseudocode→Source Code (Program)
2. Key Differences:
-
Algorithm: Sirf logic ya steps (Mathematics/Logic).
-
Pseudocode: Informal description (English-like syntax).
-
Flowchart: Graphical representation.
-
Program: Formal code (C++, Java, Python, etc.).
Comparison Table
| Feature | Pseudocode | Flowchart | Program |
| Format | Textual (Informal) | Graphical (Symbols) | Textual (Formal) |
| Language | English-like | Shapes (Box, Diamond) | Programming Syntax |
| Execution | Cannot be executed | Cannot be executed | Executable by CPU |
| Complexity | O(1) to understand | High visual clarity | High precision required |
Example of Pseudocode
Do numbers ko add karne ka pseudocode:
-
Start -
Input A, B -
SET Sum = A + B -
Print Sum -
End
Pseudocode≈Logic+English Words
Final Answer: Sahi jawab Pseudocode hai.

