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

Which tag should I use for the choice of the text language on a website if I want to be able to customize it freely with CSS?

Below are two HTML snippets to let the user choose a language for the page: one uses /
Enlico
  • 23,259
  • 6
  • 48
  • 102
-1
votes
1 answer

Frequency tables for multiple choice questions across multiple columns but not binary

I have a dataframe with multiple choice questions, which have up to 25 different options. For each of these questions the options (from a SurveyMonkey download) get their own column - so there are as many columns as there are options and the string…
Pre
  • 111
  • 7
-1
votes
1 answer

Add new options to the form as the users progress

I'm looking for how to make new options appear in the form as the users answer it. For exmaple, let's say I have a drop list "gender" with the options "male", "female", and "robot". If the user choose "male" or "female", a check list would appear…
kalil
  • 21
  • 3
-1
votes
1 answer

multiple choice quiz with class correct and wrong

I created a multiple choice quiz, and it working perfectly, I mean get the total score written on the website, but I wish to change it to just giving an extra 'correct' or 'wrong' CSS class to the selected input radio buttons after the Submit button…
Regina
  • 21
  • 5
-1
votes
2 answers

How to guarantee one of the multiple choice answers is correct in android?

I'm trying to create a multiple choice math question. I have managed to create 4 random answers, but I'm not sure how to put in the correct answer. It has to be either option1,2,3, or 4, and it should be random. My java code: public class…
Larry Jing
  • 383
  • 1
  • 5
  • 26
-1
votes
3 answers

Simple choice game Python IDLE 3.4 How to proceed with different choices?

I'm very new to programming and was doing a simple choice game: Answer = (input("You meet a bear, what do you do? A) Give the bear a hug B) Run away")) if Answer == ("A)"): print("The bear chopped your hand off!") else: print("Good…
-1
votes
1 answer

AlertDialog Multiple Items Store In One Variable With Separator

How do I store Items from AlertDialog - multipleChoiceItems in a one variable. Also with a separator , . I need it in order to pass to remote server and extract it using the php - explode function. Here's my demo code: MainActivity.java final…
RoCkDevstack
  • 3,517
  • 7
  • 34
  • 56
-1
votes
1 answer

Insert multiple choices in a field Symfony

I have two entities with ManyToMany relationship (Student, Notification) and I want to insert a notification with multiple students, I use SonataAdmin for the administration of the application Here is my code: Entitiy Student:
Nacer Naciri
  • 67
  • 2
  • 8
-1
votes
1 answer

Unknown error in JavaScript multiple choice quiz

I tried to make it as basic as absolutely possible with the constraints I was given. scores had to be in arrays, and there had to be two numeric inputs for age and BMI. In the HTML code, it's all radio elements aside from the age and BMI questions.…
-1
votes
1 answer

select mutiple contact list by searchview and send to another activity

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 for…
-1
votes
1 answer

Confusion in working with objects in Java. Why the program prints that value?

I need your knowledge to explain something very simple that confuses me As you can see, it's a very beginning practice on Java, and I already face the first confusions. So the question is, what is true from the A, B, C, D? A. line 12 prints 4 B.…
Sh3
  • 9
  • 1
-1
votes
1 answer

How to read textfiles instead of using cases?

I'm working on a project where I display questions in Textboxes. Underneath each one of them there are 4 checkboxes and the user has to select the one that answers to the question. Is there any way I can just put all my questions, answers, etc in a…
RawMeat
  • 1
  • 4
-2
votes
2 answers

Q20. What is the order of execution of the lines of the following program?

Q20. What is the order of execution of the lines of the following program? def f1(x): #1 temp = x + 1 #2 return temp #3 def f2(y): #4 t = y -1 #5 v = f1(t) #6 return v #7 #8 print(f2(5)) #9 Answers (choose one): a) 1-2-3-4-5-6-7-9 b)…
-2
votes
1 answer

How to present the frequencies of each of the choices of multiple-choices questions that are presented in different ways?

I have this example dataframe (my real dataframe is larger and this one includes all the cases I am facing with my big dataframe) df = data.frame(ingridents = c('bread', 'BREAD', 'Bread orange juice', 'orange juice',…
Anas116
  • 797
  • 2
  • 9
-2
votes
1 answer

Service and IntentService

If a Service is created as a subclass of IntentService base class which of the following statement is accurate? Service runs in the context of the main thread of the application owning the Service Service runs as a worker thread in the application…
1 2 3
17
18