List of questions
Related questions
Question 316 - FC0-U61 discussion
A developer is writing a program to process a long list of employees and apply a cost-of-living increase of 3.2% to all employees making less than $15 per hour. Which of the following pseudocode snippets provides the best solution?
A.
If employeesalary is greater than $15 per hour employeesalary = employeesalary * 1.032
B.
For all employees in the list making less than $15 per hour employeesalary = employeesalary * 1.032
C.
If employeesalary is less than $15 per hour employeesalary = employeesalary * 3.2
D.
For all employees in the list making greater than $15 per hour employeesalary = employeesalary * 3.2
Your answer:
0 comments
Sorted by
Leave a comment first