Filemaker Pro 9 (104) Flashcards
This set entered on 7-26-14
7.26.14.5
- What calc would you use to get the volume of a cube?
Length * Width * Height
- What operator works to hook two TEXT values together?
The CONCATENATION OPERATOR (&). It hooks together two text values, as in:
Length & “ Inches”
If the LENGTH FIELD contains 36, the result of this calc is: 36 Inches
- What are the COMPARISON operators?
You often need to compare two values, for example, you may need to add an additional shipping charge of the total weight if an order is more than 20 pounds. ALL COMPARISON OPERATORS RESULT IN A BOOLEAN VALUE.
- What are examples of COMPARISON OPERATORS?
=, >, etc.
- What are the LOGICAL OPERATORS?
They evaluate values and come up with a BOOLEAN (YES/NO) result. Unlike the other operators, most of the LOGICAL OPERATORS are recognizable words.
- What does the AND (Logical Operator) tell you?
it tells you if both values are YES.
- What does this calc evaluate to:
Length > 3
and Height > 5 ?
It EVALUATES to Yes if the Length is more than 3 AND the Height is more than 5.
- The OR operator tells you if:
EITHER VALUE IS YES.
- What does this calc evaluate to:
Length > 3 or
Height > 5 ?
It evaluates to Yes if the length is more than 3 OR the Height is more than 5.
- The last LOGICAL OPERATOR, Not, stands alone: it works only on one value, NOT TWO. What would this calc evaluate to:
Not Length > 3 ?
It would evaluate to Yes if the length is NOT more than 3. It simply reverses the BOOLEAN value that comes after it.
- What is the. ˆ (Exponentiation) Logical Operator?
It lets you calculate exponents, as in
Pi * Radius ˆ 2.
This calculation squares the value IN THE RADIUS FIELD.