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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started