9/08/2016

Chain reaction:

Definition: a series of events in which each event causes the next one.

Domino effect

Definition: a situation of cumulative effects produced when one event initiates a succession of similar events.Note1: the speed increases with the advance of events.

Butterfly effect

Definition: is the sensitive dependence on initial conditions in which a small change can have a huge effect. " It has been said that something as small as the flutter of a butterfly's wing can ultimately cause a typhoon halfway around the world"-Chaos theory

 

Computer programming:

Definitions:

1) Computer language: a computer language is a language used to give instructions to a computer to create software.

2)Algorithm: an algorithm is a logic sequence of actions to complete a task.

3)Library: is a set of codes and commands to complete certain instructions.

4) Cycle:is a repetition of instructions or actions the computer must do.

5) Loop: is an infinite cycle.

6)Variable: is a different type of data used by the progam.

Examples:

1) #include<iostream>: the library

using namespace std; : cout<<, cin>>

int main ()

{

int num,num2,result;

cout<<"please give me a number:";

cin>>num;

cout<<"please give me the second number:"

cin>>num2;

result=num+num2

cout<<result;