Pseudo Code
Problems
SESSION BY
DIPEN PALWANKAR (B.TECH IT)
What is PseudoCode?
 Pseudocode is an informal high-level description of the operating principle
of a computer program or other algorithm.
 It uses the structural conventions of a normal programming language, but
is intended for human reading rather than machine reading.
Types of problems
 1) Logical Solving:
- What is the output?
- What is the memory required
- Space Required?
- How many times will the loop run?
 2) Word problems/ Programming Knowledge based:
- Sorting algorithms
- Conceptual
 3) Syntax/ Rules based:
- How are variables used
- Indentation
- Input output - methods
Workspace
Let’s Practice Problems!
Tips to practice
 Practice actual programming!
 Always use pen and paper
 Make a table
 Keep track of all variables
 Keep an eye for small particular details
 Get concepts clear
Thank you

Pseudo code session ok testing 1234567890

  • 1.
  • 2.
    What is PseudoCode? Pseudocode is an informal high-level description of the operating principle of a computer program or other algorithm.  It uses the structural conventions of a normal programming language, but is intended for human reading rather than machine reading.
  • 3.
    Types of problems 1) Logical Solving: - What is the output? - What is the memory required - Space Required? - How many times will the loop run?  2) Word problems/ Programming Knowledge based: - Sorting algorithms - Conceptual  3) Syntax/ Rules based: - How are variables used - Indentation - Input output - methods
  • 4.
  • 5.
    Tips to practice Practice actual programming!  Always use pen and paper  Make a table  Keep track of all variables  Keep an eye for small particular details  Get concepts clear
  • 6.