Description: Power Builder 6.0 Developer Associate
Passing Score:
75%
Practice Test - Number of questions: 111 questions
Simulation Test - Number of questions: 111 questions
Simulation Test Duration: 90 minutes
Has explanations: No
Question of the day
Answer(s)
application has access to the following function:function of_Switch (ref integer ai_int1, integer ai_int2)integer li_templi_temp = ai_int1ai_int1 = ai_int2ai_int2 = li_tempReturnThe follow script occurs somewhere in the application:integer li_num1,li_num2 li_num1 = 5li_num2 = 8 of_Switch (li_num1, li_num2)What are the values of li_num1 and li_num2 after the of_Switch function returns?A. li_num1 = 5, li_num2 = 5