| ||||||||
Operational expressions are typically used to manipulate data in computer programs. They support activities such as:
Arithmetic Operators used to
perform mathematical calculations. Example: C = A * B
Comparison Operators used to
perform comparisons of numbers, strings, etc.. "cat and dog" <> "kitten and pup"
(usually found in if-then statements)
Concatenation Operators used to
combine strings. Newstring = "the time is " & Now (Now is a function that
returns the current time).
Logical Operators Operators used to
perform logical operations. (A * B) AND (C * D) (usually found in if-then statements)
|
|
Copyright © 1999
- 2005 |