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

allow users to design forms with choices

Let's say I have an app that's supposed to allow (fashion designers) to post a "Design with Customizations" The wanted result in the template is like this : Dress: Please select material : 1- wool, 2-cotton, 3-cashmere (only one can be…
DjangoGuy
  • 103
  • 2
  • 13
2
votes
0 answers

In a SRGS grammar, how can I reference the value recognized from an "one-of" element in following tag element?

I am defining a grammar using SRGS format. I know I could use one of the following: ... item 1 out.chosen="item 1" item 2 out.chosen="item…
2
votes
2 answers

How to process multiple choice answers from google forms in excel to pivot table

I'm processing a bunch of results from a google forms result spreadsheet into an excel spreadsheet (making nice graphs and charts) but I cannot figure out how to process the multiple choice question answers in the way google provides them. In the…
Jouke
  • 330
  • 4
  • 17
2
votes
2 answers

Java: Which structure to use for a multiple choice game

I'm trying to create a multiple choice game with 4 possible answers for each question. During the main part of the game the player will be asked a question and will be prompted to input an answer. In my code, along with the question and answer…
2
votes
1 answer

AlertDialog MultipleChoice Doesn't Show Items

I'm having a problem regarding of displaying the items int the AlertDialog. I check the code and it's ok. Only the items doesn't show. Here's my code: //PREFERENCE CATEGORY - DIALOG public void alertDialogPrefCat(){ //TODO - String[]…
RoCkDevstack
  • 3,517
  • 7
  • 34
  • 56
2
votes
0 answers

SharePoint workflow condition on multiple choice column

I try to have a condition on a multiple choice column. With single choice it is working easyly but I could not find a method to do it with a multiple choice column. For instance, the column named "Choices" has the possible values: Car, Bike, Bus,…
2
votes
1 answer

Migration done in WP, but now getting '300 Multiple Choices' error

I have just done a migration from a subdomain to root but now when I try to link to others pages from my site, I receive the following message: Multiple Choices The document name you requested (/maquetacion.php) could not be found on this server.…
2
votes
1 answer

check answer with the random mc questions from database

I was going to display some random questions called from my database and check answers using the code: question.php:

Please answer all questions.



gary luk
  • 23
  • 4
2
votes
1 answer

List items are not checked in multiple choice ListView

I have the following setup: Activity: public class UploadActivity extends AbstractListActivity { protected PackageAdapter mAdapter = new PackageAdapter(); @Override protected void onCreate(Bundle savedInstanceState) { …
WonderCsabo
  • 11,947
  • 13
  • 63
  • 105
2
votes
1 answer

Rails redirect_to choice page

In my rails app, I have a student model, and a material_student. Just after the student login, I would redirect it on a page that give him the choice to select between two "edit" views. First is provided by student_controller to manage is personal…
Nicolas R
  • 55
  • 6
2
votes
1 answer

Symfony2 multiple choice is not validating

I'm creating a simple list of shop carts with users and products assigned to it. My form for new cart looks like this: public function buildForm(FormBuilderInterface $builder, array $options) { $builder->add('cartName', 'text', array('label'…
mmmm
  • 3,768
  • 9
  • 36
  • 63
2
votes
1 answer

Saving MultipleChoiceField in django

I am trying to save a MultipleChoiceField in Django. model.py choices_for_field = (('A','A'), ('B','B'), ('C','C'), ('D','D'),) class names(models.Model): c_name = models.CharField(max_length=50, null=False, blank=False,…
escapee
  • 413
  • 1
  • 6
  • 14
2
votes
1 answer

Get unchecked items in Listview with MultipleChoice

Sorry for the silly question. I know how to get checked items from ListView (MultipleChoice) with a SparseBooleanArray. But how to get the unchecked items?
tehnolog
  • 1,204
  • 1
  • 11
  • 23
1
vote
2 answers

How to get to know whether the checkbox is checked or not in a multiple choice listview in android?

I am using multiple choice listview,in this I would am getting the position values when clicked on it.how to know whether it is checked or not.Kindly help me on this.Thanks.
Karthik
  • 4,943
  • 19
  • 53
  • 86
1
vote
1 answer

Symfony2 : Binding an expanded multiple choice form

I set up a form which includes a multiple expanded form $builder->add('rooms', 'entity', array( 'class' => 'MyBundle:House', 'multiple' => true, 'expanded' => true, 'required' => false )); The underlying class House…
queto putito
  • 253
  • 3
  • 15
1 2
3
17 18