Respuesta :
Answer:
The correct answer is option (B) "{!$Setup.Url_Settings__C.URL__c}".
Explanation:
In computer programing using Visualforce, "$Setup" refers to a global merge field that gives the user access to hierarchical custom settings. In this case, the developer needs to retrieve the correct URL to access the current user's profile and display this on a Visualforce Page. "$Setup" will give the developer access to the hierarchical custom settings in Visualforce, and the command "Url_Settings__C.URL__c" will provide the root access to the current user's profile.
In this exercise, we have to know which of the alternatives best describes the profile display, so we have:
The code "{!$Setup.Url_Settings__C.URL__c}", in other words, letter B
How do I access hierarchy custom settings?
Hierarchy custom settings are easily retrieved in Visualforce: {!$ Setup. Setting__c. Field__c} and will be resolved according to the current user context.
Opening each part of this code, we have:
- "$Setup" refers to a global merge field that gives the user access to hierarchical custom settings.
- URL to access the current user's profile and display this on a Visualforce Page.
- "Url_Settings__C.URL__c" will provide the root access to the current user's profile.
See more about code at brainly.com/question/497311