Discussion :: Microprocessors
-
Read the following rules for scanning Boolean expressions in Pascal
- The expressions are scanned from left to right.
- The operations are scanned in the order NOT, AND, OR.
- All operators (i.e., NOT, AND and OR) are scanned together.
- In one scanning all the operators of only one type are scanned.
Answer : Option C
Explanation :
All Boolean operators are not scanned together. The order is NOT, AND, OR.
Be The First To Comment