IPT Flashcards
Deals with an integration approaches and
techniques that connect different components of
IT infrastructure.
Integrative Programming
containers for storing data values.
PHP variables
often used to output data to the screen.
echo
Also known as Language processors
LANGUAGE TRANSLATORS
defines a formal language for combining set of computing
instructions to generate an output.
Programming language
used to perform operations on variables and values.
Operators
used with numeric values to
perform common arithmetical operations, such as addition,
subtraction, multiplication and so on.
arithmetic operators
used with numeric values to write
a value to a variable.
assignment operators
The basic assignment operator in PHP. It means that the left
operand gets set to the value of the assignment expression on the
right.
=
used to compare two values
(number or string):
Comparison operators
used to increment a variable’s value.
increment operators
used to decrement a variable’s value
decrement operators
used to combine conditional
statements.
logical operators
executes some code if one condition is true.
if statement
executes some code if a condition is true and
another code if that condition is false.
if…else statement