Computer
Programming
- - Ajay Sirsat
Contents
1. What is Computer?
2. Parts of Computer
3. Hardware
4. Software
5. Algorithm
6. Flowcharts
7. Pseudo Code
8. Program
2
1.
What is
Computer?
“
“A computer is an
electronic device used
to process the data,
and convert it into
useful information.”
4
2.
Parts of
Computer
5
Data
- Any raw facts and
figures which
computer takes as an
input and processes it
to make useful
information.
Users
- End users of the
machine, People those
who uses computers
for their tasks.
6
Hardware
- Something you can
touch and see.
Physical components
of the computers.
Software
- Something that can
be seen but not
touched. These are
computer programs
used to give
instructions.
7
3. Hardware 8
Want big impact?
USE BIG IMAGE.
9
4. Software
10
5. Algorithm
11
An algorithm is a set of step-by-step
procedures, or a set of rules to follow,
for completing a specific task or
solving a particular problem.
Ex. Online Shopping, Applying for
Voter Id card
Algorithm
1. Start
2. Select your age
3. Check if age is greater than or
equal to 18.
4. If age is greater than or equal to
18, the person can vote.
5. If age is not greater than or equal
to 18, the person cannot vote.
6. End
12
6. Flowchart
- Graphical or
pictorial
representation of the
algorithm.
13
Start
End
Enter Age
If age is
more than or
equal to 18
You can Vote You cannot Vote
Yes No
14
7. Pseudocode
Pseudocode is an informal high-
level description of a computer
program or algorithm. It is
structured way of representing
the steps.
Declare age
If age >= 18
Print “You can
vote”
Or
Print “You
Cannot Vote”
15
8. Program
A computer program is a
collection of instructions
that can be executed by a
computer to perform a
specific task.
THANKS! 16

Computer programming

  • 1.
  • 2.
    Contents 1. What isComputer? 2. Parts of Computer 3. Hardware 4. Software 5. Algorithm 6. Flowcharts 7. Pseudo Code 8. Program 2
  • 3.
  • 4.
    “ “A computer isan electronic device used to process the data, and convert it into useful information.” 4
  • 5.
  • 6.
    Data - Any rawfacts and figures which computer takes as an input and processes it to make useful information. Users - End users of the machine, People those who uses computers for their tasks. 6 Hardware - Something you can touch and see. Physical components of the computers. Software - Something that can be seen but not touched. These are computer programs used to give instructions.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
    5. Algorithm 11 An algorithmis a set of step-by-step procedures, or a set of rules to follow, for completing a specific task or solving a particular problem. Ex. Online Shopping, Applying for Voter Id card
  • 12.
    Algorithm 1. Start 2. Selectyour age 3. Check if age is greater than or equal to 18. 4. If age is greater than or equal to 18, the person can vote. 5. If age is not greater than or equal to 18, the person cannot vote. 6. End 12
  • 13.
    6. Flowchart - Graphicalor pictorial representation of the algorithm. 13 Start End Enter Age If age is more than or equal to 18 You can Vote You cannot Vote Yes No
  • 14.
    14 7. Pseudocode Pseudocode isan informal high- level description of a computer program or algorithm. It is structured way of representing the steps. Declare age If age >= 18 Print “You can vote” Or Print “You Cannot Vote”
  • 15.
    15 8. Program A computerprogram is a collection of instructions that can be executed by a computer to perform a specific task.
  • 16.