You need to sign in to do that
Don't have an account?
Which three declarative fields are correctly mapped to variable types in Apex.
Which three declarative fields are correctly mapped to variable types in Apex?
Choose 3 answers.
A. Checkbox maps to Boolean
B. Number maps to Integer
C. Date/Time maps to Datetime
D. TextArea maps to List of type String
E. Number maps to Decimal
Choose 3 answers.
A. Checkbox maps to Boolean
B. Number maps to Integer
C. Date/Time maps to Datetime
D. TextArea maps to List of type String
E. Number maps to Decimal
Its A,C, E i.e Checksbox to Boolean, Date/Time to Datetime and Number to Decimal
For B Number maps to Integer you will get error message in Apex called Illegal assignment from Decimal to Integer
For D TextArea maps to List of type String you will get error message in Apex called Illegal assignment from String to List<String>
Thanks
Preyanka
A
E
C
D - Is not an option because of TextArea Maps to String
B - Is not an option because Number Maps to Decimal
E
C