Questions tagged [multiple-choice]

Multiple choice is a form of assessment in which respondents are asked to select the best possible answer (or answers) out of the choices from a list. The multiple choice format is most frequently used in educational testing, in market research, and in elections.

Multiple choice is a form of assessment in which respondents are asked to select the best possible answer (or answers) out of the choices from a list. The multiple choice format is most frequently used in educational testing, in market research, and in elections.

264 questions
1
vote
1 answer

jQuery (or other) multiple choice quiz with different outcomes

I've been coding jQuery for a while but I have never approached a quiz before. Basically, I am trying to make a quiz like the multiple choice ones you get as a kid - if you've answered majority A, you get a certain outcome, but if you are majority B…
user783440
  • 21
  • 3
1
vote
2 answers

Randomizing the order in which MC answers from a DB are displayed, using CF/Javascript/HTML

Today I’m trying to improve a Jeopardy-style game for work using ColdFusion, HTML, and Javascript. As it stands now, the game navigates to a question page which displays the question along with an answer box for the user to type in their response. …
Katie
  • 49
  • 1
  • 9
1
vote
1 answer

How to determine whether a string of letters contains a certain letter in SPSS

I am working with data from a multiple choice survey question. Survey respondents were able to select options A, B, C and/or D. The data file simply lists the response(s) they chose, with no spaces, commas or semicolons in between. For example, the…
ChiStats
  • 11
  • 2
1
vote
1 answer

How do I create a Multiple-Choice-Quiz within Google Slides

I want to make a Multiple-Choice-Quiz at the end of my presentation. I neither have experience with the Apps Script nor with the Slides API. I want to select specific text elements and let them listen for a click on them and change their color to…
1
vote
2 answers

Why will my button not advance to the next question?

I am a new developer and this is my first question. I am trying to make a multiple choice quiz for an assignment. I am stuck on making the NEXT button move to the next question. I think the rest of the JS file is correct... Right now the…
silvermyst
  • 11
  • 3
1
vote
1 answer

MySQL: Select results per category and user for a multiple choice test

I have a multiple choice application with items, options, answers, and user tables: An item is basically a question. Each item belongs to one of three categories. The category is stored as a string in the category field. Each item has several…
Pida
  • 928
  • 9
  • 32
1
vote
1 answer

Django: Access certain attribute of multiple subclasses with inheritance from one superclass

My aim is to access an attribute of a subclass without knowing beforehand which of the two subclasses was choosen (multiple choice classes) Ideally there is an attribute in the SuperClass that changes depending upon which SubClass was choosen. The…
Jaco
  • 1,564
  • 2
  • 9
  • 33
1
vote
1 answer

How to replace many if loops in Python?

I am creating a text-based game where the user can make many different choices and they all lead to different endings or different choices in the future. I was wondering what the best way to accomplish this is because a bunch of if loops sounds like…
Roberto Chavo
  • 33
  • 1
  • 5
1
vote
2 answers

RadioButtons auto checked on RecyclerView scrolling without clicking

I am developing a model test app where each test has 20 questions and each questions has 4 radio button options inside a radio group. Now while scrolling and selecting radio button, I have encountered automatic radio button checks. I want to know…
1
vote
2 answers

How to define Mode with generic ForeignKey in Django

I'm new to Django and I want to create models with the following logic: class ExerciseCardio(models.Model): pass class ExerciseWeights(models.Model): pass class Exercise(models.Model): name = models.CharField(max_length=100,…
1
vote
1 answer

Django model choice example

I have the following models: POSSIBLE_POSITIONS = ( (1, 'Brazo'), (2, 'Muñeca'), (3, 'Pierna'), (4, 'Pie'), ) class Device(models.Model): id = models.CharField(max_length=10, primary_key=True) class User(models.Model): id =…
Lechucico
  • 1,914
  • 7
  • 27
  • 60
1
vote
1 answer

Using while and if in python to create a game fueled by a text file

I am attempting to ask a question, have the user input the answer. The program has to check the user's answer against the correct answer than keep score. I am having difficulties formatting the while and if statements and reading the lines from…
1
vote
2 answers

Trying to create two multiple choice questions in one script

I am trying to create two multiple choice questions in one Javascript code but every way I try to edit it, it only reads the second question with the correct answer. How would I correct it so my first question is answered with Banana, Kiwi for the…
1
vote
1 answer

Calling AlertDialog with listitems from menu

I want to have a menu item clicked and than show an alert-dialog with multiple choice for the selection of one or more items to do something. I tried already many examples from different tutorials but none really suits my needs. The task should…
1
vote
0 answers

BIRT reports: display text null when using multiplechoice

I want to display selected parameters inside of the report page, after the parameters are selected. I had several listboxes and used different displayTexts and values. After some development, I needed to change listboxes to use…
Hawk
  • 392
  • 4
  • 24