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
20
votes
1 answer

CMake multiple-option setting

I'm working on a project which is built with CMake, so I'm writing up a CMakeLists.txt for it. In this file I want to have a (cached) CMake variable that can only take one of several options (which I would specify somehow), rather than any arbitrary…
einpoklum
  • 118,144
  • 57
  • 340
  • 684
12
votes
2 answers

Multiple Choice Searchable ListView

OK I have a multiple choice ListView that works fine. I check the boxes for the contacts (held in a String[]) and can return the values fine. Because some people have a bunch of contacts I wanted to create a search bar kind of like the stock one…
burmat
  • 2,548
  • 1
  • 23
  • 28
11
votes
2 answers

Python: how to use list as source of selection for user input?

Can anyone check this code and let me know what is wrong? input_list = ["One", "Two", "Three"] P1 = input("Select the input: ", input_list[0], input_list[1], input_list[2]) print (P1)
Srini
  • 227
  • 2
  • 3
  • 10
11
votes
3 answers

Multiple choice AlertDialog with custom Adapter

I am trying to create a AlertDialog with multiple choice option. I have tried with the setMultiChoiceItems but what i have is a ArrayList and not a CharSequence so i tried with the adapter. The problem with setAdapter is that when i select…
10
votes
3 answers

Multiple choices command line argument

How could a multiple choices argument in the command line be implemented? There would be a predefined set of options and the user can choose multiple: python cli.py --alphabet upper,lower,digits,symbols or python cli.py --alphabet upper lower…
user6216224
5
votes
0 answers

Google Forms - Inserting an image in a multiple choice field using Apps Script

I have created a script which will add images to a Google form to produce a multiple choice quiz. At the moment it adds an image then adds the options (A,B,C,D). The image and the option are two separate items. As a result, I can't randomise the…
4
votes
3 answers

django multiple choice model problems

I have two diferents problems with multple choices in models. The first, i'm trying to do a multiple choice so the user can pick one or more days of the week: DAYS_CHOICES = ( (1, _('Monday')), ... (7, _('Sunday')), ) ... day =…
JMira
  • 888
  • 4
  • 16
  • 34
4
votes
1 answer

How to use the R survey package to analyze multiple response questions in a weighted sample?

I'm relatively new to R. I am wondering how to use the 'survey' package (http://r-survey.r-forge.r-project.org/survey/) to analyze a multiple response question for a weighted sample? The tricky bit is that more than one response can be ticked so the…
Chris G.
  • 81
  • 2
  • 9
4
votes
1 answer

select all check box in android listview

In my Application, i tried to create a list with multiple check boxes. for that i tried one ListView with android.R.layout.simple_list_item_multiple_choice for multiple choice in ListView. My ListView in XML as,..
MGR
  • 382
  • 2
  • 7
  • 21
4
votes
1 answer

Properly defining "other" option in django MultipleChoiceField using CheckboxSelectMultiple

I'm new to both django and python and currently trying to build a form with various options as well as an "other" option for options not on the list. I'd like to define the option such that when "other" is checked, the form only validates if the…
Dave
  • 6,141
  • 2
  • 38
  • 65
3
votes
1 answer

Can the expss package process multiple answer questions with weighted data?

Can the expss package solve the question asked in this link?, it's about multiple response question with a weighting variable in the dataset How to use the R survey package to analyze multiple response questions in a weighted sample? Let's suppose…
Sebastian
  • 95
  • 6
3
votes
1 answer

Symfony FormType at least one radio selected

I'm working on Symfony 3.4 and I have a FormType with multiples fields and 2 booleans like : ->add("is_my_first_boolean", ChoiceType::class, array( "expanded" => true, "multiple" => false, …
Clément Andraud
  • 9,103
  • 25
  • 80
  • 158
3
votes
3 answers

Creating a multiple choice question in LaTeX

I am trying to make a multiple choice question in LaTeX. I am a little confused as to whether \begin{question}{MultipleChoice} is something that LaTeX can handle by default or do I need extra packages, descriptions, ect...(I am super new to…
Michael
  • 1,537
  • 6
  • 20
  • 42
3
votes
1 answer

Optical Mark Recognition in javascript for cross plateform mobile app

I'd like to build an exam correction app. From a paper multiple choice question (mcq) I'd like to use my camera to analyse it and get a score. This exist in python…
3
votes
0 answers

Multiple Choice Scanner with Opencv and Python

I'm working on a project to scan a multiple choice file of this kind: Multiple Choices Image The code works but sometimes I have some troubles to recognize the right position of the check box. I proceed as follow: First I detect the 20 black box at…
1
2 3
17 18