Counting machine for ballots cast.
A game show allows contestants to ask the audience to help them choose a correct answer to a question from four possible answers. Audience members each have a small hand-held terminal on which they can press one of four buttons labelled A, B, C or D. As the audience vote, their selection is appended to a list. Once the time for voting has ended the results are collated and displayed to the contestant.
Write a program to output the total number of votes cast for each answer. The votes cast were: "A", "B", "B", "B", "B", "C", "C", "D", "A", "B", "A", "B", "A", "B", "D", "B", "C", "B", "B", "A".
Use this boilerplate code as a starting point:
Remember to add a comment before a subprogram, selection or iteration statement to explain its purpose.
Answer A: 5
Answer B: 10
Answer C: 3
Answer D: 2
Use these resources as a reference to help you meet the success criteria.
Run the unit tests below to check that your program has met the success criteria.
Answer A: 5
Answer B: 10
Answer C: 3
Answer D: 2
Check that you have: