Technology-Chapter 17 Flashcards
Programming
is the act of formulating an algorithm or program, it entails developing a systemic means of solving a problem so that an agent can follow the instructions and produce the intended result for every input, every time.
Adele Koss
one of the first professional programmers, summarized programing the Univac I in 1950.
Java Script
a modern programming language that is especially effective for Web applications
Names are seen as titles that having
changing values
Names are called ,
variables, a term that reminds us that their values vary
assignment
most commonly used programing language operation is the command to change the value of a variable, that command is this
addresses
memory locations that have different values at different times
identifier
the letter sequence that makes up a variable’s name, and can not contain any spaces, and are case sensitive
declaring variables
first thing you do when writing any program is to state what variables will be used, and we do it using a command called declaration
statement terminator in Java Script is
a semicolon
every variable used in a program must ..
be declared
undefined
when the names is declared but there is no value assigned yet
initialize
when javascript allows us to set the initial value as part of the declaration, it does this to the variable
three types of data in java script programs
numbers, strings, and Booleans
numbers
the values assigned to the variables