Salesforce Administrator — Question 255
IF(ISPICKVAL(picklist_field)) has the same output as:
Answer options
- A. VAL(picklist_field)
- B. CASE(picklist_field)
- C. CASE("picklist_field")
- D. Picklist_field(VALUE)
Correct answer: B
Explanation
The correct answer is B, as the CASE function evaluates the value of a picklist field, similar to ISPICKVAL. Options A and D do not correctly interpret the picklist field, while option C incorrectly uses quotes, making it a string instead of a field reference.