VMware vRealize Automation 8.x (2022) — Question 21
Which two options will inject the value of the daily.limit system property? (Choose two.)
Answer options
- A. @Value(“#{daily.limit}”)
- B. @Value(“$(systemProperties.daily.limit)”)
- C. @Value(“$(daily.limit)”)
- D. @Value(“#{systemProperties[‘daily.limit’]}”)
- E. @Value(“#{systemProperties.daily.limit}”)
Correct answer: C, D
Explanation
Options C and D are correct because they correctly reference the daily.limit system property using the appropriate syntax. Option A does not access the system properties correctly, while option B uses an incorrect syntax for accessing system properties. Option E is also valid but is not one of the selected answers.