Apex Code 33% Flashcards
What does it mean that Apex is an integrated language?
That DML SOQL, SOSL are all integrated and can be used in the code.
What does it mean that Apex is a strongly typed language?
That variables must be declared with a datatype.
int a = 10;
Apex or Point and Click:
- Create Web services
- Create email services
- Perform complex validation over multiple objects
- Create complex business processes that are not supported by workflow
- Apex
- Apex
- Apex
- Apex
Apex or Point and Click:
Create custom transactional logic (logic that occurs over the entire transaction, not just with a single record or object)
Apex
Apex or Point and Click:
Attach custom logic to another operation, such as saving a record, so that it occurs whenever the operation is executed, regardless of whether it originates in the UI, a VF page or from the Web Services API.
Apex
True/False: All variables in Apex allow null as a value and are initialized to null if they are not assigned another value.
True.
In Apex, all variables and expressions have a data type. What are the five kinds of data types in Apex?
- Primitives (int, String)
- sObject
- Collections (Set, List, Map)
- Objects created from user-defined or system-defined apex classes
- Enums
True/False: Lists:
- Lists contain implicit keys, explicit values
- Is not ordered
- Values must be unique
- Useful for storing the results of a DB query
- True
- False - Lists have ordered values
- False
- True
True/False: Maps:
- Maps contain key, value - pairs
- Is not ordered
- Values must be unique
- Useful for caching records indexed by ID
- True
- True
- False - Keys must be unique
- True
True/False: Sets:
- Sets contain values
- Is not ordered
- Values must be unique
- Useful as a lookup criteria for relationship-based SOQL query
- True
- True
- True
- True
True/False: Lists can only contain Primitives and sObjects.
False.
Lists can contain Primitives, sObjects, objects created from Apex classes and collections.
True/False: Sets can only contain sObjects.
False.
Sets can only contain primitives.
True/False: the key, value pair of Maps can be:
- Primitive to Primitive
- Primitive to sObject
- Primitive to Collection
- True
- True
- True
Apex classes: What is the difference between:
- private myClass
- public myClass
- global myClass
- Classes cannot be referenced by any Apex code outside of the class in which they are defined.
- Classes can be called within the same org.
- Classes can be called by all Apex code everywhere. (e.g. webservices)
Apex classes: What is the difference between:
- public virtual myClass
- public abstract myClass
1. Apex supports virtual classes and methods. use "extend" to subclass a virtual class. Note, methods derived from a virtual class can be overridden, but doesn't have to be. 2. Apex supports abstract classes. Methods are defined, but implemented in the subclass. Note, methods derived from an abstract class must be overridden.
Apex classes: What is the difference between:
- public with sharing myClass
- public without sharing myClass
- With sharing or user context limits the code to access the records that the user executing the code has access to - respects the sharing model.
- Without sharing or system context - default - allows the code to access all records. - ignores the sharing model.
True/False: A class can only extend one other class, but can implement more than one interface.
True.
True/False: User-defined methods can be polymorphic.
True.
A method named myMethod can be implemented two times with a different number of parameters.
True/False: User-defined methods can be declared as static when defined in a Trigger.
False.
True/False: In Apex, all classes and methods are final by default. By default, classes may not be extended to create sub-classes, and methods may not be overridden within sub-classes.
True.
True/False: A class cannot have a more restrictive access modifier than one of its methods or attributes.
True.
True/False:
- Only classes that are extending from virtual or abstract classes can use super
- You can only use super in methods that are designated with the override keyword.
- True
2. True
What does the final keyword mean?
Constants that are defined using the final keyword can be assigned at most once, either in the declaration itself or with a static initializer method if the constant is defined in a class.
What is a statement in Apex?
Any coded instruction that performs an action. I.E. Loops, Locking, DML calls, Transaction Control etc.
True/False: Classes with @isTest annotation can only contain test methods.
True
What is the advantage of having a separate class for testing?
Classes defined with @isTest doesn’t count against the limits.
Note, you can also add the @isTest annotation to methods inside normal classes.
True/False: If you update or delete a record in its before trigger, or delete a record in its after trigger, you will receive a runtime error.
True.
Given the following scenario: You update account A, and the before update trigger of account A inserts contact B, and the after insert trigger of contact B queries for account A and updates it using the DML update statement or database method.
What will happen?
runtime error.
You are indirectly updating account A in its before trigger.
Mention 3 ways Apex can be invoked.
- Anonymous block.
- A trigger invoked for specified events.
- Asynchronous Apex by executing a future method, scheduling an Apex class to run at specified intervals, or running a batch job.
- Apex Web Services, which allow exposing your methods via SOAP and REST Web services.
- Apex Email Service to process inbound email.
- Visualforce controllers, which contain logic in Apex for Visualforce pages.
- The Ajax toolkit to invoke Web service methods implemented in Apex.
True/False: To handle incoming emails two tasks must be performed. 1. Create an Apex class that implements an interface for the Emails. 2. Setup and enable the interface through the Email Services Page.
True
Which interface must be implemented when implementing an inbound email service?
Messaging.IndboundEmailHandler
What can be the cause of the message: MASS_MAIL_LIMIT_EXCEEDED.
The limit is hit either by sending to many emails in one transaction or by sending to many emails during a day.
What does the following two methods in the Messaging.sendEmailMessage do:
- setDocumentAttachments
- setFileAttachments
Both are options to add an attachment to emails generated by Apex code.
True/False: VisualForce email templates can be used for mass email.
False.
True/False: Salesforce.com can track the status of emails in HTML format, including when it wass sent, first opened and last opened.
True
Note, called Tracking HTML Email
What does the following line do:
Messaging.SingleEmailMessage mail = new Messaging.SingleEmailMessage();
Instantiates an email object for sending a single email message.
What does the following line do:
Messaging.MassEmailMessage mail = new Messaging.MassEmailMessage();
Instantiates an email object for sending a mass email message.
What are the parameters in the following method to send an email:
Messaging.sendEmail(
1 - new messaging.Email[] {mail} ,
2 -opt_allOrNone);
- Either Messaging.SingleEmailMessage or Messaging.MassEmailMessage.
- Specifies whether the operation allows partial success - if false and a record fails, the remainder of the DML operation can still succeed.
Note, is optional, default is true.
True/False: Emails are not sent until the Apex transaction is completed.
True
True/False: Emails are always sent with the email of the current user as sent by.
False.
- The users email address can be overwritten using the method: setSenderDisplayName(‘’);
- The users email address can be hidden using the method: setUseSignature(false);
Dynamic Apex enables developers to create more flexible application by providing them with the ability to do two things, which?
- Access sObject and field describe information.
2. Write dynamic SOQL or SOSL queries.
True/False: sObjects describe information provides information about individual records of an object.
False.
It provides information about objects in an organization, not individual records.
True/False: The limits methods return the specific limit for the context in which they are being executed.
True.
There are two versions of Limit methods, describe them.
- One to return the amount of the resource that has been used in the currec context.
- One to return the total amount of the resource that is available for that context.
True/False: In the following code the string MsgTxt is not written to the debug log.
System.LoggingLevel level = LogginLevel.ERROR
System.debug(logginlevel.INFO, ‘MsgTxt’);
True.
Since the logging level is set to Error, only debug calls with the logginglevel ERROR is shown. However if the logging level was higher, I.E. FINER all debug calls lower than FINER would show in the logs.
True/False: During deployment to production, Salesforce enforces the following rules.
- 75% of Apex statements must be executed by tests.
- Every Apex trigger must be have some test coverage, even though every line of every trigger does not have to be executed by a test.
- Every Apex test must execute without throwing any uncaught exceptions or exceeding governors.
- True
- True
- True
True/False: Cascading delete operations do not cause triggers to execute - records that did not initiate a delete do not cause triggers to execute.
True.
True/False: All fields can be updated by Triggers
False.
createdDate, lastUpdated, Id - some Fields on standard objects.
The Trigger Context Variables Old and OldMap can only be used in Insert and Update Triggers.
False.
Update and Delete Triggers.
What does theTrigger Context Variable Size contain?
The total number of records in a trigger invocation, both old and new.
What does theTrigger Context Variable isExecuting return?
Returns true if the current context for the Apex code is a trigger, not a Visualforce page, a Web service, or an executeanonymous() API call
True/False: To Avoid deadlocks first lock parents records, then children.
True.
True/False: To Avoid deadlocks lock sObject records in order of ID when multiple records of the same type are being edited.
True.