points 34 Answer The pseudocode snippet below contains several nested if-Then-Else statements. Unfortunately, it is writ
Posted: Fri Jun 10, 2022 11:58 am
points 34 Answer The pseudocode snippet below contains several nested if-Then-Else statements. Unfortunately, it is written without proper alignment and indentation. (This is why I deduct points from your pseudocode assignments if the code isn't formatted properly.) What is displayed if temp has a value of 165? If temp 130 Then Display "rare" Else If temp 135 Then Display "ned rare" Else If temp<140 Then Display "medium" Else Display "sed well" If temp 155 Then Display "well done" End If End If End If End If OO rare med rare Omedium well medium Nothing is displayed. well done OO