This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
What method is automatically added when you're creating a runnable class instead of a class?
A new method
new
A static method
static
A main method
main
A finalize method
finalize
Which method will allow the method to be called from anywhere that its class is accessible?
A public method
public
A private method
private
An access method
access
A protected method
protected
You want to update a record in your SampleTable table that contains the account number 1234 by using the update method. Before you call the update method, which clause is used at the beginning of this statement to locate the record sampleTable.AccountNum == “1234”?
SampleTable
where sampleTable.AccountNum == “1234”
locate sampleTable.AccountNum == “1234”
join sampleTable.AccountNum == “1234”
forUpdate sampleTable.AccountNum == “1234”
How many instances of SysGlobalObjectCache are available in finance and operations apps?
Many
One for each user session
One for all shared sessions from a server.
One for all sessions that syncs across service instances.
You must answer all questions before checking your work.
Was this page helpful?