✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What is the purpose of the following code snippet:
var
arrValues: array[0..4] of integer;
i: integer;
begin
for i := 0 to 4 do
arrValues[i] := i * 2;
end;