Multiple choice technology packaged enterprise solutions

Which of the following ways property called myProperty in primary page can be obtained

  1. .myProperty

  2. Primary. myProperty

  3. local.myProperty

  4. Primary. MyProperty

  5. .MyProperty

  6. primary.myProperty

Reveal answer Fill a bubble to check yourself
A,B,F Correct answer
Explanation

Properties on the primary page can be accessed using dot notation (.myProperty) or by explicitly prefixing the page name as Primary.myProperty or primary.myProperty. The keyword Primary is case-insensitive, but local variables use the local prefix, and case-sensitive property naming conventions must be matched.