✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Given the code snippet below, what is the output once executed?
var
age: integer;
begin
age := 18;
if age < 18 then
Memo1.Lines.Add('You are a minor.')
else if (age >= 18) and (age < 65) then
Memo1.Lines.Add('You are an adult.')
else
Memo1.Lines.Add('You are a senior citizen.');
end;