InterviewSolution
| 1. |
What Are Various Types Of Extended Rules ? |
|
Answer» Pre-Session extended rules: These rules define variables that have global scope and can be accessed from any other extended rule in the map. They are PROCESSED before the translation object is processed. Post-Session standard rules: These rules run after the translation object is processed and have no PERMANENT scope. On-Begin extended rules: The On-Begin rules are processed before the start of the GROUP iterations and before any variables in the group are INSTANTIATED. On-End extended rules: The On-End rules are processed after the end of the group. Pre-Session extended rules: These rules define variables that have global scope and can be accessed from any other extended rule in the map. They are processed before the translation object is processed. Post-Session standard rules: These rules run after the translation object is processed and have no permanent scope. On-Begin extended rules: The On-Begin rules are processed before the start of the group iterations and before any variables in the group are instantiated. On-End extended rules: The On-End rules are processed after the end of the group. |
|