Question 1easymultiple choice
Read the full Software Development Concepts explanation →FC0-U71 Software Development Concepts • Complete Question Bank
Complete FC0-U71 Software Development Concepts question bank — all 0 questions with answers and detailed explanations.
A developer writes the following pseudocode for a process that finds the largest number in a list:
SET max = first element FOR each number in list IF number > max THEN SET max = number END IF ENDFOR OUTPUT max
What programming concept does this pseudocode represent?