Create a Windows application that includes four groups of two radio buttons each. One radio button of each group has a Text showing the number 0, and the other shows the number 1. Create a sequence of four digits, each 0 or 1. For example 1, 0, 1, 0 is such a sequence. The user is to select one radio button from each group, either 0 or 1, and click a button to submit the four selections. The application responds by stating the number of correct selections in a label. For example, if the user chooses the sequence 0, 1, 1, 0, the response would be two correct, because the last two values, 1 and 0, match the last two positions of the 1, 0, 1, 0 sequence chosen initially. The user plays until a response of four correct is obtained. A numeric up-down displays the number of submissions that the user has made. (Using random numbers, covered in the next chapter, can make this game more interesting.)