function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
nikitha kambamnikitha kambam 

Opportunity opp = [SELECT Id, StageName FROM Opportunity LIMIT 1];

how can a developer get the label for the stageName field?
A. Call "Opportunity.StageNamelabel";.
B. Call "Opportunity.StageName.getDescribe0.getLabel()"
C. Call -opp.StageName.getDescrIbe0.getLabel()"
D. Call opp.StageName.Label
paul diracpaul dirac
Opportunity.stagename.getDescribe().getLabel()
paul diracpaul dirac
Please mark this question as solved if it was right