You have basketball practice every Wednesday and your coach always makes you run the same drill where you have to wait in line, dribble 10 times, shoot a layup, catch your rebound, bounce the ball to your teammate, and get back in line. You have to run this whole drill 15 times. Write a program to describe this basketball drill using the following commands.
waitInLine()
dribble()
shootLayup()
catchRebound()
ballToTeammate()
a) dribble() shootLayup() catchRebound() ballToTeammate()
b) waitInLine() dribble() shootLayup() catchRebound()
c) shootLayup() catchRebound() ballToTeammate() waitInLine()
d) ballToTeammate() waitInLine() dribble() shootLayup()