This program segment is supposed to display NEGATIVE if Number is less than 0, SMALL if Number lies between 0 and 5 (inclusive), and LARGE if Number is greater than 5. Correct the logic error so that this pseudocde works correctly.
If Number < 0 Then
prepare "NEGATIVE"
Else
IF Number > 5 Then
prepare"SMALL"
Else
prepare "LARGE"
End If
End If