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
0
votes
5 answers

PHP: Various outcomes based on radio selections

I have this script, which works perfectly well. BUT I will end up creating hundreds of variations if I keep doing it this way.
Damian Smith
  • 85
  • 1
  • 2
  • 12
0
votes
1 answer

Is it possible to Get Data from Choice Column of Sharepoint List and not from Data in Sharepoint List in Asp.Net?

I have a List in sharepoint as 'Notifications' which has the columns 'ID,Name,Areas(MultiChoice Column)'. I want to get Choices from 'Areas' Column and not from the DATA in Notifications List. Is it possible. Because i want to Bind it to ASP.NET…
SHEKHAR SHETE
  • 5,964
  • 15
  • 85
  • 143
0
votes
1 answer

Android: Can't identify the correct answer in a quiz game

Well, I'm with this problem about 3 days. I'm making a quiz game, but I can't identify if the clicked button contains the correct answer or not. Following some tips that I saw around here, I did some alterations in my code. See the new code: package…
user2118021
0
votes
4 answers

Android: How can I know if the correct button was clicked in a quiz?

Well, I'm new in Java programming, and following a few tips that I've seen around here, I made this code to a quiz game: public class OtherActivity extends Activity { TextView textView1, textView2; Button btn1, btn2, btn3, btn4; …
user2118021
0
votes
1 answer

Javascript - generating result from multiple form choices

Im new here, Im new in programming as well and I seldom code anything, but recently I've always wanted to improve my work place and I just want to create a simple form for my colleagues. To make things short, I've created the form, what I need is…
SBJ
  • 5
  • 2
0
votes
2 answers

android: How can I get the right list of answers in a quiz game with random questions and answers?

I'm creating a simple quiz game. In this game, the question and the respective answers will be randomly generated. I created a list "q" to the questions. And for the answers, I created various lists with 4 strings each one. For example, if the…
user2118021
0
votes
1 answer

In android am using multiple choice list for contact selection how to select all contact at one button click

Hi am using multiple choice list can any one tell me how should i select all item on any button click event or how unselect all item on button click event my code is here /** Called when the activity is first created. */ @Override public void…
0
votes
2 answers

Radio buttons and checking user's choice in a quiz

I'm making a quiz system and tried a different way of taking the variables and the values from MySQL. $question = mysql_query("SELECT * FROM `questions`"); $stat = mysql_fetch_assoc($question); $num = mysql_num_rows($question); $questionid =…
Michael Naidis
  • 116
  • 2
  • 4
  • 15
0
votes
1 answer

check checbox programmatically in multiple_choice listview (android)

sorry if there is another question like this but i couldn't find my answer. I want to know the way to programmatically set a checkbox to state where it is already selected when I populate the ListView. The checkbox is in the Listview and i am using…
Aksiom
  • 1,565
  • 4
  • 25
  • 39
0
votes
1 answer

Choices as choice option in choice field Type in symfony2

Maybe is a little confusing question but here is an explanation by the code: is there a way to do something like this? $builder->add( 'doYouWantToEnterData', 'choice', array( 'choices' => array( …
Nenad
  • 65
  • 6
0
votes
2 answers

Android random multiple choice quiz: how to identify correct answer

I'm trying to create a random multiple choice quiz for android. I want to display a random question from a stringarray, with the corresponding answer from another string array showing up in one of the four options. The other three options will…
CoffeeCrisp
  • 253
  • 3
  • 6
  • 19
0
votes
1 answer

Two sets of answer choices for CrowdFlower/Mechanical Turk

Half the questions in my survey will have one set of multiple-choice options (call this A); the other half will have another set of multiple-choice options (call this B). How can I do this on CrowdFlower? Should I create a column called "answer…
jeunefille
  • 21
  • 3
0
votes
1 answer

jQuery Mobile: single choice select menu values interfering with handler for multiple choice menu

I am creating a jQuery Mobile page that has two select menu's, one is multiple choice, the other is single choice. The multiple choice menu is set to trigger a handler function which loops though the selected values in the menu. The problem is that…
Ben Pearce
  • 6,884
  • 18
  • 70
  • 127
0
votes
3 answers

Writing an Action Invoker - How can I call a method on user choice?

as you can see in my code, I want to hold( set ) a method into an object. And call the method with that object... Please take look at the code, you can understand easly; it's hard to explain in plain English... My question is; Ofcourse "Action…
Lost_In_Library
  • 3,265
  • 6
  • 38
  • 70
-1
votes
1 answer

How to select multiple choices for a field in django?

Ihave this Actor model on the app called crew. from django.db import models # Create your models here. class Parent(models.Model): # name=models.CharField(max_length=30,unique=True,default=None) …
Hari
  • 9
  • 4