有効的なPlatform-App-Builder-JPN問題集 はJPNTest.com提供され、Platform-App-Builder-JPN試験 に合格することに役に立ちます!JPNTest.comは今最新Platform-App-Builder-JPN試験問題集 を提供します。JPNTest.com Platform-App-Builder-JPN試験問題集はもう更新されました。ここでPlatform-App-Builder-JPN問題集 のテストエンジンを手に入れます。
Platform-App-Builder-JPN問題集最新版のアクセス 「290 問、30% ディスカウント 、特別な割引コード:JPNshiken 」
Universal Containersでは、サービス担当副社長が、ケースの優先度に基づいて、各ケースの視覚的なインジケーターフラグをリクエストしています。優先度の高いケースには赤のフラグ、中優先度のケースには黄色のフラグ、低優先度のケースには緑のフラグを付ける必要があります。この要件を達成する数式はどれですか? 2つの答えを選択してください
A. CASE( Priority, "Low", "img/samples/flag_green.gif", "Medium", "img/samples/flag_yellow.gif", "High", "img/samples/flag_red.gif", "/s.gif")
B. IMAGE( IF(ISPICKVAL(Priority, "Low"), "img/samples/flag_green.gif", IF(ISPICKVAL(Priority, "Medium"), "img/samples/flag_yellow.gif", IF(ISPICKVAL(Priority, "High"), "img/samples/flag_red.gif"))), "Priority Flag")
C. IF(ISPICKVAL(Priority, "Low"), "img/samples/flag_green.gif", IF(ISPICKVAL(Priority, "Medium"), "img/samples/flag_yellow.gif", IF(ISPICKVAL(Priority, "High"), "img/samples/flag_red.gif", "/s.gif")))
D. IMAGE(CASE( Priority, "Low", "img/samples/flag_green.gif", "Medium", "img/samples/flag_yellow.gif", "High", "img/samples/flag_red.gif", "Priority Flag")
正解:A,D
The formula for creating a visual indicator flag on each case based on the case priority should use the IMAGE and CASE functions. The IMAGE function returns an image for a given URL, and the CASE function evaluates an expression and returns a value based on that expression. Option A and D use these functions correctly, while option B and C do not.