1.
What is the order of precedence for logical operators in PeopleCode conditional statements?
2.
Within the component processor flow, the component build process is a loop that executes until _____.
3.
On a page definition, which control is most like a link?
4.
Examine this PeopleCode snippet:
class RO_ROWSET extends Rowset;
Which statement is true?
5.
Examine this PeopleCode snippet:
Local Rowset &RSCUST, &RSSTUD;
&RSCUST = GetRowset(RECORD.CUST_TBL);
&RSSTUD = CreateRowset(RECORD.STUDENT_TBL);
&RSCUST.CopyTo(&RSSTUD, RECORD.CUST_TBL, RECORD.STUDENT_TBL);
Select the correct statement.
6.
Your manager asks you to use PeopleCode to autogenerate the keys for the Orders page. Which event do
you use?
7.
Put the steps of application development in the correct order.
1. Define new fields.
2. Build the SQL tables.
3. Test the application.
4. Define the records.
5. Define the components.
6. Define the pages.
7. Register the components.
8. Design the application.
8.
During the execution of a PeopleCode program, a FieldEdit program issues an error statement. The
component processor _____.
9.
Select the four PeopleCode data buffer classes. (Choose four.)
10.
You need to comment out a block of PeopleCode that contains nested comments. Which style of
comments will you use?