✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What is the result of the following nested IF-THEN statement?
var iAge, iWeight: Integer;
begin iAge := 22; iWeight := 75;
if (iAge >= 18) then if (iWeight > 75) then ShowMessage('You are eligible to donate blood'); else ShowMessage('You are not eligible to donate blood'); else ShowMessage('You are not old enough to donate blood');
end;