CBS E Computer Book Chapter : Algorithm

        Class VIII

        Chapter 1

        Aglorithms

Que: What is algorithms?
Ans:
1. Algorithms are the pseudo code. That are used to
make a blue print of software program and applications.
2. It is also a step by step process.

Que: What is pseudo code?
Ans: Pseudo code is a code that is written in user's
laguage.

Que: What is Software Program?
Ans: A software Program is written in any computer
programming language.

Que: What is Programming Langauges?
Ans: Programming Langauges are the code that is used to
make software for hardware access.

Que: Write some examples of programming languages?
Ans: C, C++, Java, .NET, PHP, Basic, etc.

Que: Write an algo to add a number?
Ans: Step1: Take three No. a, b and c.
    Step2: Add a and b
    Step3:    put result in c.
    Step4: Print c (i.e, Result of a+b)