Which two are capabilities of the Guidewire Profiler? (Select two)
The following Gosu statement is the Action part of a validation rule:

It produces the following compilation error:
Gosu compiler: Wrong number of arguments to function rejectFieldQava.lang.String, typekey.ValidationLevel, java.lang.string, typekey.ValidationLevel, java.lang.string). Expected 5, got 3
What needs to be added to or deleted from the statement to clear the error?
When a user marks the InspectionComplete field and clicks Update, the user making the update and the date/time of the update need to be recorded in separate fields. Which approach will accomplish this?
Given this function:
Code snippet
929 public function checkConnection() {
930 try
931 {
932 var conn = DriverManager.getConnection(url)
933 // logic here
934 }
935 catch (e : Exception)
936 {
937 // handle exception
938 }
939 }
What action will align the function with Gosu best practices?
Which rule is written in the correct form for a rule which sets the claim segment and leaves the ruleset?
A)

B)

C)

D)

The Panel Ref in the screenshot below displays a List View with a toolbar. Add and Remove buttons have been added to the toolbar, but they appear in red, indicating an error. The Row Iterator has toAdd and toRemove buttons correctly defined.

What needs to be configured to fix the error?
Given the following code example:
Code snippet
var query = gw.api.database.Query.make(Claim)
query.compare(Claim#ClaimNumber, Equals, "123-45-6798")
var claim = query.select().AtMostOneRow
According to best practices, which logic returns notes with the topic of denial and filters on the database?
What is a commit in Git?
Which of the following represents logging best practices? Select Two
This sample code uses array expansion with dot notation and has performance issues:

What best practice is recommended to resolve the performance issues?