The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
7 views

Infopath 1 form multiple quizzes

I am designing some quizzes for my team at work. My boss is not technical so I am doing the infoPath/sharePoint bit for him while he writes the questions. he is writing the questions in excel. The ...
0
votes
2answers
41 views

My JavaScript-based quiz doesn't work. Why?

I'm designing a quiz and I'm running into trouble. I tried to check if the radio button with id q1 was selected and if it was it would take score and add 1 point. And after that I could click and it ...
-5
votes
2answers
49 views

to create a online quiz using php and mysql [closed]

i am anew to php,currently i am doing a project on online quiz using php and database.....here all questions are taken from DB...i am able to take questions from database and print it on screen(using ...
-1
votes
0answers
21 views

Evaluation Quiz with Point Values and PDF Results Report- What's the best way? [closed]

A marketing firm wants me to create an evaluation quiz for their website that they can have their clients complete as part of the construction of marketing plans. Here's what I need to do: Create a ...
1
vote
0answers
27 views

Expected argument of type “Boolean”, “string” given while generating a questionnaire in Symfony2

I am trying to manage a questionnaire with symfony 2, the code is partly working. I get this error Expected argument of type "Boolean", "string" given My code in the controller is the following ...
0
votes
1answer
37 views

Adding a score in a quiz with php and mysql were answers heeft different points

I'm just starting to learn php. I have a quiz, were every correct answer gets different points. I looked on the internet, but up till now I coouldn't find the solution. This SO question helped me, but ...
0
votes
0answers
21 views

Offline Computer Based Tests

I need to setup a lab in my classroom to perform offline exams.. I have two questions: 1) Software: What is the best free (or low cost) software application, which i can use on the server, and ...
0
votes
2answers
32 views

Best way to keep highscore in Android

Referring to my first question here, now I'm on the step to create highscore activity. I realize that this is one hot topic in stackoverflow, however I didn't find the one that really answer my ...
0
votes
1answer
76 views

Creating array of quiz questions that do not repeat

I'm trying to create a basic quiz app where the questions will not repeat. I've looked at several examples and believe I should be storing the questions in an array and then removing one from the ...
-1
votes
0answers
34 views

jquery if answer is wrong, make text bold in array

I have this array var correct1 = [ 'H', 'N' , 'P'] , response = []; The user will enter into a keyboard in this format http://jsfiddle.net/Victoriamisu/Udubg/6/ What happens (if you can't ...
1
vote
1answer
61 views

Jquery Clone Elements With Dynamic Content

I am so stuck here! I have dynamically created elements inside a div that I need to make a "copy" of, or more like a "second version" of that element. The main function with this is to create a quiz ...
-2
votes
1answer
128 views

Quiz Application Database/PHP structure advice? [closed]

Hi there I am looking for some help for my Quiz Application that I have begun creating for a University project Here is the site It basically is a CMS for creating Quiz content I have everything ...
1
vote
1answer
24 views

Quiz App - After app close, return back to activity?

I am creating an android quiz application but the only thing I am struggling on is when the user is on a question and then they close the app, how do I allow them to return back to that question when ...
1
vote
2answers
97 views

Multi answer quiz in jquery with custom alert

Kinda new to jquery and I have a multiple answer quiz question. It is working correctly until I add a custom error message. The question has multiple correct answers that gets checked against a ...
0
votes
1answer
58 views

How would i be able to check for a correct answer in a quiz C#?

I have been trying to make my first app, A quiz app, and can't seem to get my head around how I would validate a correct answer when the appropriate button is clicked to then move on to the next ...
-2
votes
2answers
34 views

Java script: If focus of user is out of window then show alert

I am trying to start a online quiz website. If the user entered the quiz page. He should not be able to search for answer on the other tab or other window on the computer. By this we will get the ...
-3
votes
0answers
74 views

C# Visual Studio. Winforms. Can't get Visible property set to true inside an if statement

enter code hereI am doing a quiz and if the user scores 0 or 1, I would like the label jokeRemark1 to show, so I want the Visible property to be set to true. It is initially set to false because I ...
2
votes
1answer
91 views

getline skipping first input character c++

So I have been making this program for a while now. I have looked all over the internet and none of the solutions I have found work. Every time I put in my input in the arr[i].question and ...
-4
votes
0answers
19 views

Quize for my blog? [closed]

I want to conduct quiz every day in my blog In Quiz each question should be display in separate page only.Each question contains multiple choice questions. Each quiz should have at least five ...
-3
votes
0answers
17 views

Highlight a particular button [closed]

I have developed a quiz application. The examinee can skip the question or flag the question for further review. I need to show all the questions numbers at a side and high lite the answered and ...
-6
votes
1answer
58 views

Building a quiz form [closed]

I would like ti build a quiz. What I would like is: a text area where the user can submit the answer, and the click submit. If the answer is incorrect a text would appear saying "Sorry, Please try ...
-1
votes
2answers
75 views

IRC BOT in Python, if in elif in while-loop

Here is the complete code: #client der mit irc-server kontakt aufnimmt import time import socket from sys import argv script, mitspieler1, mitspieler2 = argv sock = socket.socket(socket.AF_INET, ...
0
votes
1answer
36 views

Randomising the Order of Called variables in as3

I am creating a FlashCS4 Application that is in the style of a quiz. The questions are stored in a seperate text file and are called into the program through as3. This all works fine, however I am ...
0
votes
1answer
17 views

New application only working within the developers browser. Is this somehow the code I have created?

I have designed and created my first application. I can supply the html if needed. Now I can see the application working in my desktop browser BUT when other people try to test the application it ...
-1
votes
2answers
74 views

An Idea or Algorithm for displaying questions based on difficulty and user responses (C#) [closed]

I'm trying to create an algorithm to display a set of questions to a user starting from the lowest difficulty and progressing with the difficulty level as the user answers the questions correct and ...
0
votes
1answer
23 views

Pick a random Entry from a database

Hi I am trying to code an application to help me run a quiz night. I have different databases for different catagories which i want to be able to randomly pick out a question and show it on screen. ...
1
vote
1answer
162 views

Consuming a Quiz web service with C#

I am currently making a Quiz web service using C# in Unity 3D. I am relatively new to C#. I've ran into a problem that I cannot seem to fix on my own. I am able to retrieve all of the questions and ...
0
votes
1answer
50 views

how to read the entire line on java scanner when the user gives their answer? [closed]

Long time admirer, first time poster :) Hi all, I suspect that the question needs further explanation as this may potentially be a catastrophic design flaw in my first attempt at a Java quiz. The ...
-1
votes
8answers
100 views

How to fix my simple Java recursion method?

I am trying to write a simple recursion program that will print out the canonical sum of all of the integers preceding the input and the input itself. For example, entering 5 should print out "1 + 2 + ...
1
vote
4answers
155 views

jquery quiz change result view

Hello I am trying to make a jQuery quiz but when they have answered every answer it just says: Question 1 is False Question 2 is True Is there a way for me to change it to: Question 1 is Correct ...
0
votes
1answer
77 views

Calling in a .txt File to populate text boxes in a flash quiz

I am creating a health and safety quiz to be used by engineering students. I have been given a .txt file with 16 categories of questions within them. I have searched for a tutorial on how to do this ...
0
votes
1answer
134 views

sugestion for quiz database design [closed]

I'm trying to implement a database for a Chemistry Quiz The idea is to provide chemistry questions using marvinscketch from chemaxon, using cxsmiles as compound structures. I'm looking for some ...
-2
votes
1answer
117 views

iphone Play different alert sounds for correct or wrong multiple choice quiz answer

I want to play a different alert sound if the multiple choice option answer is correct or wrong. I have code for the correct and wrong answer as follows if (questionNumber == 1) { [self ...
-4
votes
1answer
162 views

How to make a quiz in android? [closed]

For my final year application i nees to make a quiz or a trivia game. Basically, all i need to do is a questionnaire with 26 questions that have images and multiple answers. I found a site but now I ...
0
votes
1answer
72 views

How to load an url for a quiz app in android java?

I recently started a quiz app and i find a good site where i can make quizes with images, multiple responses and at the begining dsplays the score. I don't know where is my error because with ...
0
votes
0answers
72 views

PHP - pausing in a while loop until user has clicked Next

Hi I have a question that is pretty much the same as one posted towards the end of last year - trouble is, i need to ask more about the answers provided as I am looking for an even simpler answer. ...
2
votes
3answers
347 views

PHP quiz with on screen results

I am trying to create a simple quiz based on a tutorial I found. http://css-tricks.com/building-a-simple-quiz/ Unfortunately, this is making me spin my wheels and the answer is probably pretty ...
1
vote
1answer
41 views

Having an issue with adding and deleting values in a JQuery array based upon clicked divs

Here is my JQuery: var skinCare=[]; $('.skinCare').click(function(){ if($.inArray(event.target.id, skinCare) == -1){ var value = event.target.id; skinCare.push(value); } ...
0
votes
0answers
70 views

Android variable not changing onClick()

What I am doing is implementing a quiz scoring system where there are 4 buttons. If the user clicks on the wrong button a variable called STRIKE will change to true. When the user finally clicks the ...
-2
votes
2answers
116 views

Android Quiz App - Where should i place sqlite file? [closed]

I'm doing an android Quiz app...where it contains sqlite db with questions and answers... So i want to retrieve questions/answers from the db...Where should i place my sqlite file in the project?
0
votes
0answers
102 views

Creating a JavaScript Questionnaire

Level: JS Newbie. So this is more of an idea I have than any kind of functioning code but I'll bash out some layman's code to communicate my idea more effectively. First in plain English: I'm ...
0
votes
1answer
754 views

how to make quiz questions appear one at a time in javascript

JavaScript noob here. I'm trying to make a quiz app I'm working on, but I really don't know how to proceed. I've written out all the questions with html. Here's the situation: this quiz has no ...
0
votes
1answer
47 views

AS2 Quiz Images

This is a quiz engine that I've built (feel free to use it). I wanted to expand on it by adding images, I've never really done anything much other than variables and can't figure how to work it, I ...
-1
votes
1answer
336 views

Android CountDown Timer won't stop [closed]

Ok so here is my problem. I am working on a trivia game that uses a question counter to display 10 questions and once that happens it calls the finalscore class. I have implemented a timer that resets ...
0
votes
0answers
140 views

How to Filter a specific data in Sqlite Android?

i'm a newbie in android, can someone help me to filter a specific data in my sqlite, My problem is the first right question in that category shows but the next does not show, it only stays in the ...
-1
votes
1answer
164 views

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 ...
0
votes
4answers
124 views

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, ...
0
votes
2answers
79 views

I would like a stopwatch for my IQ test [closed]

I am making a IQ test. I would like to put a timer in that outputs a value when the user finishes the test and multiplies its reciprocal times the # of questions correctly answered. This seems ...
0
votes
2answers
168 views

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 ...
-3
votes
1answer
161 views

Actionscript 3 Displaying quiz results [duplicate]

I want to make a quiz that at the end shows a person the qualities he/she has for chosing a specific college course. The quiz will ask 10 questions which each have 2 answers, upon clicking an answer, ...

1 2 3 4 5