Answer from cs61c-av (Kenneth Wong 16192104) for Question 1 C does not need all of the statements. do while statements and while statements could be dropped because it could easily be created with if and goto statements. This can be seen by how if and goto statements are located in an assembly language, and not the while/do while statements. C programmers probably included them all for ease of programming.