SevenElementsofProgramming


Seven Elements of Programming

  1. Data
  2. Input
  3. Output
  4. Looping
  5. Conditional Branching
  6. Operators
  7. Subprograms

 

Data

Data types, objects, primitive data types

 

Input

information that comes in from the user or other sources

 

Output

ex - System.out.println("Hello World!");

screen displays, motor movement,

 

Looping

for

while

 

Conditional Branching

if

switch

 

Operators

+-*/=<> | += -= *= /=

 

Subprograms

Procedures

functions