Question: In MIPS Write the program in MIPS that reads a string representing an attendance record for a student. The record only contains the following three
In MIPS

Write the program in MIPS that reads a string representing an attendance record for a student. The record only contains the following three characters: 1. 'A': Absent. 2. 'L' Late 'P: Present A student could be rewarded if his attendance record doesn't contain more than one 'A' (absent) or more than two consecutive 'L' (late) You need to return (print) whether the student could be rewarded according to his attendance record. Example: Input: "PPALLP" Output: True Example 2: Input: "PPALLL" Output: False Write the program in MIPS that reads a string representing an attendance record for a student. The record only contains the following three characters: 1. 'A': Absent. 2. 'L' Late 'P: Present A student could be rewarded if his attendance record doesn't contain more than one 'A' (absent) or more than two consecutive 'L' (late) You need to return (print) whether the student could be rewarded according to his attendance record. Example: Input: "PPALLP" Output: True Example 2: Input: "PPALLL" Output: False
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
