Tagged Questions
The quiz tag has no wiki summary.
22
votes
14answers
4k views
C++: When Has The volatile Keyword Ever Helped You?
I'd like to know of an example of a problem which was solved by adding the volatile keyword.
I'm sure it has helped somebody solve something, but I don't know where I would actually apply it.
In my ...
9
votes
9answers
238 views
Weirdly phrased interview question (reducing iterations)?
So, I was asked this question in a phone interview two days ago. Since then I've been thinking about how I could answer but haven't reached any good points yet so I am thinking that maybe it was the ...
8
votes
2answers
365 views
Why does this separate definition cause an error?
Solution:
This is an interesting problem, because sometimes we have no choice but to declare an explicitly qualified name.
std::string convert();
namespace tools {
class Numeric {
// ...
...
7
votes
4answers
228 views
Make this syntax possible: var a = add(2)(3); //5
Make this syntax possible:
var a = add(2)(3); //5
I got this question at
http://dmitry.baranovskiy.com/post/31797647
Got no clue. Confused.... Know the answer...
7
votes
7answers
6k views
5
votes
2answers
1k views
Interesting SQL quiz
Recently I came across with the following quiz. Imagine we have this table
+--------+
| colors |
+--------+
| red |
| black |
| white |
| green |
| orange |
+--------+
The task is to write a ...
4
votes
1answer
768 views
W3Schools jQuery Quiz Question
There is a jQuery quiz posted on the W3Schools site here...
http://www.w3schools.com/quiztest/quiztest.asp?qtest=jQuery
Question #19 is as follows,
Look at the following jQuery selector: ...
4
votes
4answers
431 views
Language independent programming quiz
I'm attending a small programming seminar next weekend, and I have been given the task of creating a good quiz contest.
My main problem here is that the programmers attending all work with different ...
4
votes
4answers
2k views
Ruby on Rails questionnaire tutorial?
Can't find any tutorial for creating a simple questionnaire system on RoR (without using Finite State Machines).
I think the Model is simple:
Quizzes (have many Questions)
Questions (belong to ...
4
votes
1answer
93 views
How do you localize a number of legacy globals without eval?
I'm asking this question because I finally solved a problem that I have been trying to find a technique for in a number of cases. I think it's pretty neat so I'm doing a Q-and-A on this.
See, if I ...
4
votes
9answers
5k views
C# Training Quizzes
I have been programming 10 years, mostly in vba and vb.net but I know c# well enough to program what I normally do. I yesterday was applying for a Senior c# position and I did so poorly on the ...
3
votes
3answers
93 views
MYSQL and php questionn
I am trying to create a simple script that will get data from a database and show the best top 10 persons with highest point from a specific quiz. Here is the PHP script:
<?php
$db_host = ...
3
votes
3answers
719 views
My solution to this programming challenge is wrong because it outputs the wrong answer for 10/11 test cases. What are those test cases?
I am doing this programming challenge which can be found at www.interviewstreet.com (its the first challenge worth 30 points).
When I submitted the solution, I was returned a result which said that ...
3
votes
1answer
144 views
Spring Framework name background
What does spring mean in reference to Spring Framework? I don't think that this just the favorite season of its author)
3
votes
3answers
1k views
Can you recommend a database design for quiz questions and answers that would allow for an extensible number of question types?
Example Question Types So Far:
Multiple Choice Single Answer (think radio button)
Multiple Choice Multiple Answer (think checkbox)
Matching (now there are many permutations of possible selections)
...
3
votes
4answers
180 views
Do Java workbooks exist?
Does anybody know of a Java programming workbook?
Kind of like pragmatic bookshelf's "Ruby Quiz", except for Java.
Not a book of explanations, but a book of problems.
Thanks in advance!
3
votes
5answers
815 views
Online interview quiz [closed]
I am currently interviewing for a developer role in my company and I have had a lot of poor candidates come in so far. One of the things we have discussed is providing an online test for the ...
3
votes
3answers
711 views
Algorithm Question - Team Scheduling - Quiz design
I've got a weird problem to solve - this is to be used in designing a quiz, but it's easiest to explain using teams.
There's 16 teams. There's 24 matches. 4 teams play in every match. Each team has ...
3
votes
4answers
484 views
Technical tests in interviews as a judge of employer
There is an increasing (and generally good) trend for potential employers to ask candidates to sit some sort of technical test before even being invited to interview.
I appreciate that it is going ...
2
votes
1answer
89 views
Quiz app - looping over questions
Ok, so I just recently got into this Android app development using Eclipse for fun over this winter break, so forgive me if this is a very easy question.
I have so far an app where it asks a question ...
2
votes
1answer
104 views
How to display clock count down whole the application on Blackberry?
I make and display an clock count down with this code
LabelField time;
long mille=0;
Timer timer=null;TimerTask task=null;
public Timerscreen() {
...
2
votes
1answer
75 views
Drupal Quiz Module - emailing results after taking the quiz
I have a Drupal website that uses the Quiz module to administer tests to visitors. These tests need to be available to anonymous users. My problem is that I need to be able to ask the test taker to ...
2
votes
1answer
66 views
“Personality quiz” style comparison [PHP] [closed]
I'm trying to think of an efficient or reasonable algorithm to take the results of a test submitted by the user and compare them with the values of several profiles to find a match (like how online ...
2
votes
1answer
118 views
Which database design for complex quiz app?
at the moment I am designing a database (mysql) schema for a complex quiz app. I am at the question stage at the moment, and struggle a little with the table design. Here's what I got so far:
...
2
votes
2answers
361 views
How to Create a Java Quiz GUI?
I would like to create a quiz for my Java GUI.
I'd like it to display a question on one page, then have a next button which takes the user to another page telling them if that question was correct ...
2
votes
1answer
242 views
PHP fetch unique random value from database
I've been working with PHP quiz program and I'm a bit lost on fetching unique random value from database. Currently here is my script.
<?php $num = 1;
$sql = "SELECT * FROM questions ORDER BY ...
2
votes
7answers
389 views
Checking if a string has balanced parentheses
I am currently working on a Ruby Problem quiz but I'm not sure if my solution is right. After running the check, it shows that the compilation was successful but i'm just worried it is not the right ...
2
votes
1answer
82 views
Four WinAPI test questions
Following is an extraction of a WinAPI test quiz.
I've researched quite a bit, but haven't found the answers to these:
1. Which statement, regarding dynamic link libraries (DLL), is WRONG:
a) ...
2
votes
1answer
165 views
Site similar to Ruby Quiz, but for PHP?
Does anyone know of a quiz site similar to ruby quiz (http://www.rubyquiz.com/), but for PHP?
I figure the best way to learn php is to actually work on a script, at the moment, I can't think of a ...
2
votes
4answers
258 views
What will be the value of i in the following pseudocode?
I got this question in a programming test. Do you think this question is even correct? Look at the answer choices. (2^x means 2 raised to x)
Consider the following pseudocode.
x := 1;
i := 1;
while ...
2
votes
7answers
304 views
quiz ; does this compile and if so what does it return (I know the answer)
found this typo recently
if (name.find('/' != string::npos))
I was amazed that it even compiles at -Wall -Werror (didnt try with -pedantic)
so coffee quiz - does it eval to true or false
edit : ...
2
votes
1answer
492 views
Resharper Trap “Convert to 'return' statement”
Given the following routine:
private static object ParseNumber(string token, FieldDefinition def)
{
if (def.Fraction > 0)
return Double.Parse(token);
else
return Int64.Parse(token);
}
...
1
vote
1answer
107 views
Using PHP IF ELSE for online treasure hunt
I'm trying to create an online treasure hunt game where users have to go to specific sites to get the clues and enter it on a website. There are 7 questions whereby upon getting a correct answer, the ...
1
vote
1answer
572 views
jQuery (or other) multiple choice quiz with different outcomes
I've been coding jQuery for a while but I have never approached a quiz before.
Basically, I am trying to make a quiz like the multiple choice ones you get as a kid - if you've answered majority A, ...
1
vote
1answer
65 views
Right implementation choice for switching 20+ different screens
I'm making a quiz-like game, where user answers each question before they are allowed to go to the next one.
Characteristics of my app:
Each session will have
around 10-30 screens.
In general, the ...
1
vote
1answer
132 views
Slide a div up to match its new contents with jQuery
I have a div that contains questions
Questions 2:
What is the square root of 16?
A. 7
B. 5
C. 4
D. 1
I need to make it so when an answer choice is selected, it slides up and shows:
...
1
vote
2answers
520 views
Another questionable jQuery Quiz answer at W3Schools
There is a jQuery quiz posted on the W3Schools site here...
http://www.w3schools.com/quiztest/quiztest.asp?qtest=jQuery
Question #16 is as follows,
Which jQuery function is used to prevent code ...
1
vote
0answers
304 views
Trying to build a simple quiz game on the Iphone using a sqlite database
I have a Sqlite database set up like this
ID Question AnswerA AnswerB AnswerC AnswerD
1
2
3
and what I want to do is pull from a random row 1,2 or 3 ...
1
vote
4answers
183 views
What is the best practise to programm a quiz under android?
I have following sqlite db tables, which can be accessed with a ContentProvider.
questionset (... contains meta informations)
question (... a questionset has multiple questions
answer (... as 1 ...
1
vote
3answers
320 views
Quiz algorithm question
I'm writing a a multiple-choice quiz program for Android, and would like to add a randomization feature to it, that is, the questions will come from a list, and the order will differ each time a quiz ...
1
vote
1answer
126 views
How to design rendering a new user interface for the quiz engine
We have a quiz application ( which is capable of rendering a question bank via traditional web browsers for question types like multiple choice, multiple response, true or false (note: it's a simple ...
1
vote
1answer
96 views
Fair quiz without registration, is it possible in webapp?
I'm going to make simple quiz form on site.
Are there ways to make it fair, that nobody vote up multiple times.
there are some ways to identify uniqueness of vote with their lacks:
Cookies - the ...
1
vote
3answers
224 views
javascript quiz help needed
so basicaly my problem is that i need the submit button to pop-up a new window, containing the score and the right answers. Heres what i tried to do, which doesnt work:
(body code):
<form ...
1
vote
5answers
3k views
Creating a Quiz with jQuery
Does anyone have an example of a quiz made with jQuery, without server-side processing of the results? After answering the questions, the result appears instantly. :)
1
vote
1answer
135 views
What simplifies an expression when `!` is applied to `&&` or `||`
5.121 ____ simplifies expression in which ! is applied to && or ||
This showed up on my quiz in Java. I have no idea what it is and it is not multiple choice. Could someone help me?
1
vote
1answer
382 views
Multiple Questions per page using Drupal Quiz
I'm using the Drupal Quiz module, and have setup some basic quizzes and stuff like that. However some further customization is required, involving more than 1 question per page, and a multi-type ...
1
vote
2answers
235 views
PHP regex extract date
i have $date variable 2009-04-29 which is Y-m-d
anybody can give idea how to extract into $d, $m, $y using simplest method as possible?
regex is preferable.
any more suggestion with simple method ...
1
vote
3answers
844 views
Recommend JSP Quiz Tutorials
I need to make a quiz that uses JSP and servlets but I can't find any tutorials online which can help me create my own one.
If there are any can someone recommend me some, I have tried Google and ...
1
vote
4answers
917 views
online quiz using ASP dot NET
Hii,
I need to develop an online quiz website that would be having MCQs. I would want to have one question appearing per page with a Numeric Pager so that the user can go back and forth.
I tried ...
1
vote
1answer
844 views