Given the form in the exhibit, which code segment would properly add 10 to the input contents of field a and display the results in field b?

Click the <<ItemExhibitName>> button to view the exhibit.

image001

Given the form in the exhibit, which code segment would properly add 10 to the input contents of field a and display the results in field b?
A . AFTER FIELD a
LET r_record.b = r_record.a + 10
DISPLAY BY NAME r_record.b

B . BEFORE INPUT
LET r_record.b = r_record.a + 10
DISPLAY BY NAME r_record.b
C . AFTER FIELD a
NEXT FIELD b
LET r_record.b = r_record.a + 10
D . ON KEY (F3)
NEXT FIELD a
LET r_record.b = r_record.a + 10

Answer: A

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments