You want to see exactly when a PeopleCode program fires in the context of the Component Processor flow. Which two methods will work? (Choose two.) A. Insert a Print() statement in the program. B. Insert a WinMessage() statement in the…

Evaluate this PeopleCode snippet. Local Array of Number &MyArray; Local Any &Len, &Result; &MyArray = CreateArray(3); &MyArray[1] = 100; &MyArray[2] = 200; &MyArray[3] = 300; &Result = &MyArray.POP(); &Len = &MyArray.LEN; &End = &MyArray[&Len]; What are the correct values for…

Here is a snippet of PeopleCode that uses the Fetch method of the SQL class. &SQL = CreateSQL("Select EFFORT_AMT from PS_PSU_TASK_EFFORT where TASK= :1", PSU_TASK_TBL.TASK); &Var1 = &SQL.Fetch(&Var2); Select the two correct statements. (Choose two.) A. &Var2 specifies which row…