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
4 answers

Python - Multiple choice markup parsing

Consider this text: Would you like to have responses to your questions sent to you via email ? I'm going to propose multiple choices for several words by marking up them like that: Would you like [to get]|[having]|g[to have] responses to your…
Pierre de LESPINAY
  • 44,700
  • 57
  • 210
  • 307
1
vote
2 answers

How to use a custom row instead of the android.R.layout.simple_list_item_multiple_choice in Multple Choice row in android?

I am working on this code but I have white background due to the android.R.layout.simple_list_item_multiple_choice I am unable to change the text color so that it will be ligible in the row.How to change it for custom row xml,here is my code. …
Karthik
  • 4,943
  • 19
  • 53
  • 86
1
vote
1 answer

How to make alert box return integer values on selected multple items?

I am building an alert box which has a char array of elements which is used as data for multiple selection checkbox. My question is how to make this alert box return the value as 1,2,3 depending on the selected item order? ie. if i select mercur and…
Froyo
  • 455
  • 1
  • 8
  • 21
1
vote
2 answers

custom list view in android

I am creating customized list with multiple selection with help of Checkbox. At last i managed to set checkbox selected on list's item selection's event. but when I check boxes are not being selected according to list's selection When I click on…
K.Muthu
  • 1,232
  • 1
  • 17
  • 38
1
vote
1 answer

ansible - select appropriate dictionary value when configuring user accounts

I have multiple users from 4x different LDAP domains and am trying to automate a way of adding them across multiple servers. Attributes for each user/group are static except for the identity_source_id which can be one of 4 possible values. I would…
piercjs
  • 133
  • 8
1
vote
0 answers

How to store selected items from android multiplechoice list, max number of selected items allowed should be 5?

final String[] listContent = {"1", "2", "3", "4" ,"5","6", "7", "8", "9", "10" ,"11" }; ListView list; //adapter setListAdapter(new ArrayAdapter(this, android.R.layout.simple_list_item_multiple_choice, listContent)); …
arianit
  • 107
  • 9
1
vote
1 answer

C# when building a multiple choice quiz, how do we count the correct / wrong answers and form a score base on the counts?

So i am going to have 4 questions and each question is worth 25 points and full point is 100. I am not sure how to count the answer base on my code and form score code. Thank you for helping me out. (I put 1 question to make the code shorter but in…
Leo
  • 21
  • 3
1
vote
2 answers

Creating a dictionary with multiple user input choices in python

I am creating a dictionary in python in which a user enters his information, such as name and role. Regarding the last two keys, I would like the user to write a simple letter in the input that corresponds exactly to the options I…
1
vote
0 answers

Get a value before submitting a form in Django

class StudentRegistrationForm(forms.Form): end_year = forms.IntegerField(widget = forms.TextInput( attrs={ 'id': 'end-year' } )) grade_letter = forms.ChoiceField( choices= get_grades(get_year()) …
1
vote
2 answers

Javascript move selected option with multiple values from one list to another

I am trying to make a Dual list box for forms where there are multiple selections. This consist of two list one which has options you can select from and one are the options selected. I am using vue2 with vue-bootstrap with no Jquery. the two list I…
ccsv
  • 8,188
  • 12
  • 53
  • 97
1
vote
0 answers

Populating multiple choice field and changing it with onChange in React

I have a multiple choice dropdown menu that populates with data that is stored in my database. When I try adding or deleting one of the options in the dropdown menu, the change is not reflected in the field. My code is below:
jolo
  • 11
  • 1
1
vote
1 answer

Randomise Multiple Choice options in swift

I hope you are all well! I am new in Coding and Swift. I am making a quiz app and there are 2 things I would need help with. The first one is : I want to randomise the options of the multiple choice answers for each question every time the game is…
1
vote
1 answer

Batch How to avoid a same 2nd FOR loop?

I have created a batch script to backup some subfolders from a path A to a path B (Z:\Folder1\… > U:\Backup\…). The script lists the subfolders inside path A and increments a number for each of them. Then, I just have to enter the number(s) of the…
A. Joson
  • 89
  • 1
  • 7
1
vote
0 answers

In SAS: Analyses of Multiple choice variables

I have a dataset for a survey that has several multiple choice questions (Check all, check 3, etc); Each option is coded as binary variables Location Popn1 Popn2 Popn3 Popn4 .... Popn20 Location1 0 1 1 1 Location2 1 …
Pre
  • 111
  • 7
1
vote
1 answer

Flutter: Custom Multiple Choice Row from List of Widgets

I am trying to build a multiple choice Row from a list of Container widgets (wrapped in GestureDetector for onTap). When the user clicks on one of the Container widgets in the Row, that Container widget changes color (to blue) to reflect the user's…
tap
  • 11
  • 1
  • 5