Correct the logic error so that this pseudocde


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
Write "NEGATIVE"
Else
IF Number > 5 Then
Write"SMALL"
Else
Write "LARGE"
End If
End If 

Request for Solution File

Ask an Expert for Answer!!
Programming Languages: Correct the logic error so that this pseudocde
Reference No:- TGS099846

Expected delivery within 24 Hours