COMPUTER PROGRAMMING

VOCABULARY

  1.  LIBRARY: Is where the computer code commands algorithm´s, functions, and dynamic memorie management.
  2. VARIABLES: Are the data typeof computer input or output to store information EXAMLE : int, double, char, boolean and string.
  •  INTEGER: I´ts a variable type to store integers. 1 2 3 4 5 ...
  • DOUBLE:I´ts a variable type to store decimals 1.2 2.69 3.69
  • CHAR: I´ts a variable type to store letters A B C D ... a b c d ... (diferents)
  • BOOLEAN: I´ts a variable type store T-1 (verdadero) or F-0 (falso)
  • STRING: I´ts a variable type to stroe different variables in a determined number of spaces.strig (5): 1 2 3 4 5
  1. LOOP OR CYCLE: repetision instructions to do an operation.
  2.