Question: A professor wants to create two fields, Pass _ Fail and Outcome, based on a student's final course points earned ( Final _ Points )
A professor wants to create two fields, PassFail and Outcome, based on a student's final course points earned FinalPoints Which of the following statements does this correctly?
Question options:
if FinalPoints between and then
PassFail "Pass";
Outcome "Excellent Work";
else if FinalPoints between and then
PassFail "Pass";
Outcome "Fair All Concepts Not Mastered";
else;
PassFail "Fail";
Outcome "Course Must Be Repeated";
end;
if FinalPoints between and then
PassFail "Pass";
else if FinalPoints between and then
Outcome "Excellent Work";
else if FinalPoints between and then
PassFail "Pass";
else if FinalPoints between and then
Outcome "Fair All Concepts Not Mastered";
else if FinalPoints then
PassFail "Fail";
else Outcome "Course Must Be Repeated";
end;
if FinalPoints between and then do;
PassFail "Pass";
Outcome "Excellent Work";
end;
else if FinalPoints between and then do;
PassFail "Pass";
Outcome "Fair All Concepts Not Mastered";
end;
else do;
PassFail "Fail";
Outcome "Course Must Be Repeated";
end;
if FinalPoints between and then
PassFail "Pass" and
Outcome "Excellent Work";
else if FinalPoints between and then
PassFail "Pass" and
Outcome "Fair All Concepts Not Mastered";
else;
PassFail "Fail" and
Outcome "Course Must Be Repeated";
end;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
