InterviewSolution
Saved Bookmarks
| 1. |
What is guard sequence? |
|
Answer» The function CLAUSES can be protected USING guards, but a CLAUSE can only be protected if the guard holds it. A guard sequence is SEPARATED by a comma (,) and semicolon (;). The guard sequence can only be true when at least one guard is true. |
|