Question: Consider a program that administers multiple-choice quizzes. For each question, the student provides a response A, B, C, or D. An X means that the

Consider a program that administers multiple-choice quizzes. For each question, the student provides a response A, B, C, or D. An X means that the student provided no answer. An example of a valid answer string is "ADXDCCDDXA". Your task is to write a method that checks whether a string is a valid answer string.

Complete the following file:

QuizCheck.java

public class QuizCheck { /** Checks whether a string of quiz answers is valid. It must contain an answer A, B, C, or D for each expected answer, or an X to indicate that no answer was provided. @param input the answer string @param questions the number of questions in the string @return true if the string was valid, false otherwise */ public static boolean checkInputs(String input, int questions) { ... } }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!