AW Computingでは、候補者オブジェクトに「前職経験」のチェックボックスフィールドと「前職経験年数」の数値フィールドがあります。採用チームは、「前職経験」フィールドがチェックされている場合にのみ数値フィールドを表示したいと考えています。この要件を満たすために、アプリビルダーはどの機能を使用すべきでしょうか?
正解:A,C
The useful clue is the business action being requested. Lightning App Builder controls page composition, component visibility, activation, assignments, and specialized surfaces such as record pages, home pages, and utility bars. The best answer is A. Create two different page layouts and a process to change the layout if Previous Experience is checkedd.; C. Use Dynamic Forms to display the Years of Previous Experience field if Previous Experience is checkedd. A clean Platform App Builder answer should satisfy the complete scenario, not merely one phrase in it. This item requires the app builder to choose the configuration that produces the requested behavior in normal Salesforce use. The selected answer fits that requirement because it works with the platform model instead of fighting it. None of the other options gives the same administrative control. B (Create a dependency between the Previous Experience and Years of Previous Experience fields.) is only a partial match because it does not provide the same direct administrative control as the selected option. D (Use a Visualforce component on the candidate page layout to conditionally display the fields.) is not enough: Page layouts affect presentation; they do not grant the underlying object or field capability by themselves. This is the stronger design because it respects security, data quality, user experience, and lifecycle management at the same time. ---