active questions tagged quiz - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T20:10:59Z http://stackoverflow.com/feeds/tag/quiz http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1748711/flash-as2-quiz-with-individual-points-for-each-answer 0 Flash AS2 Quiz with individual points for each answer. Daniel Weström 2009-11-17T12:59:32Z 2009-11-17T19:55:54Z <p>Hi guys!</p> <p>I'm making a quiz in Actionscript 2.0. The quiz has 8 questions. Each question has four answers and each answer gives different points. On every frame their is two questions to answer and then move on to the next two and so on.</p> <p><strong>My problem is that I need to assign each answer with points that in the end will be calculated and depending on the number of points send the user to different messages (frames).</strong></p> <p>My code so far is as follows:</p> <pre><code>// create an array of all nav buttons in group var groupinfo:Array = [q1a1, q1a2, q1a3, q1a4]; // create a variable to track the currently selected button var activebtn:MovieClip; // doRollOver: start the rollover action or process, // unless the button is currently selected function doRollOver() { if (this != activebtn) { this.gotoAndPlay(2); } } // doRollOut: start the rollout action or process, // unless the button is currently selected function doRollOut() { if (this != activebtn) { this.gotoAndPlay(1); } } // doClick: 1) return previously selected button to normal, 2) show visual // indication of selected button, 3) update activebtn function doClick() { activebtn.gotoAndPlay(1); // return previously selected to normal delete this.onEnterFrame; // stop activity on selected mc activebtn = this; // update pointer to current selection } // assign functions to each event for each button in the group function init() { for (var mc in groupinfo) { groupinfo[mc].onRollOver = doRollOver; groupinfo[mc].onRollOut = doRollOut; groupinfo[mc].onRelease = doClick; } } init(); </code></pre> <p>This code takes care of the active state for the answers on each page. <strong>The next problem is when moving across frames these states aren't remembered but resetted.</strong></p> <p>///////////////////////////// Files: /////////////////////////////</p> <p><a href="http://www.danielwestrom.se/quiz/quiz.html" rel="nofollow">http://www.danielwestrom.se/quiz/quiz.html</a> - Live demo</p> <p>Change .html to .zip for project files</p> <p>Thanks!</p> http://stackoverflow.com/questions/1359680/c-training-quizzes 0 C# Training Quizzes John Sheppard 2009-08-31T22:26:33Z 2009-10-27T19:13:26Z <p>Hello there,</p> <p>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 induction test its not funny :)</p> <p>I have always found that for me the best way to learn and recall is via question's and answers (multichoice and short answer). That is, a question is posed and after I answer instant feedback is given as to whether I choose right or wrong and the reasons why.</p> <p>As such I was wondering if anyone knew of or could recommend a C# quiz website. Something like a daily c# quiz to keep my brain up to date and fresh if I'm not always programming in it. Not something wimpy either. Something that does everything. Paying is not an obstacle, id prefer to pay for a good resource than muck around.</p> <p>Thank you</p> http://stackoverflow.com/questions/1540539/how-do-you-localize-a-number-of-legacy-globals-without-eval 4 How do you localize a number of legacy globals without eval? Axeman 2009-10-08T21:16:15Z 2009-10-08T21:41:02Z <p>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. </p> <p>See, if I could use <code>eval</code>, I would just do this: </p> <pre><code>eval join( "\n" , map { my $v = $valcashe{$_}; sprintf( '$Text::Wrap::%s = %s', $_ , ( looks_like_number( $v ) ? $v : "'$v'" ) ) } ); Text::Wrap::wrap( '', '', $text ); </code></pre> <p>I even tried being tricky, but it seems that <code>local</code> localizes the symbol to the <em>virtual</em> block, not the physical block. So this doesn't work:</p> <pre><code>ATTR_NAME: while ( @attr_names ) { no strict 'refs'; my $attr_name = shift; my $attr_name = shift @attr_names; my $attr_value = $wrapped_attributes{$attr_name}; my $symb_path = "Text\::Wrap\::$attr_name"; local ${$symb_path} = $attr_value; next ATTR_NAME if @attr_names; Text::Wrap::wrap( '', '', $text ); } </code></pre> <p>Same <em>physical block</em>, and I tested the package variables before and after being set, and they even showed the proper value on <em>their</em> time through the loop. But testing showed that only the <em>last</em> variable passed through retained its value for the call to <code>wrap</code>. So values only stayed localized <em>until</em> the end of the loop. </p> <p>I think the solution is neat--even if arcane perl magick. But the end result is good because it means I can wrap legacy code that relies on package-scoped variables and be assured that the values set will be as short-lived as possible. </p> http://stackoverflow.com/questions/1490668/which-stylesheet-will-be-selected-for-browsers-print-command 0 Which stylesheet will be selected for browser's print command? rajakvk 2009-09-29T05:11:13Z 2009-09-29T05:24:34Z <p>Which stylesheet will be used when the page is printed from the browser’s print command with the below code?</p> <pre><code>&lt;link rel="stylesheet” type=”text/css” href=”core.css”&gt; &lt;link rel=”stylesheet” type=”text/css” media=”screen” href=”comman.css”&gt; </code></pre> <ol> <li>core.css</li> <li>common.css</li> <li>core.css + common.css</li> <li>Varies from browser to browser</li> </ol> <p>Again this question is from a quiz.</p> http://stackoverflow.com/questions/1485306/what-will-be-window-title-of-the-browser-when-two-sets-of-html-exists -4 What will be window title of the browser when two sets of html exists? [closed] rajakvk 2009-09-28T03:39:48Z 2009-09-28T12:19:07Z <p>What will be the window title of the browser when the below code is inside one single HTML file?</p> <pre><code>&lt;html&gt; &lt;head&gt;&lt;title&gt;First document&lt;/title&gt;&lt;/head&gt; &lt;body&gt;&lt;h1&gt;First document&lt;/h1&gt;&lt;/body&gt; &lt;/html&gt; &lt;html&gt; &lt;head&gt;&lt;title&gt;Second document&lt;/title&gt;&lt;/head&gt; &lt;body&gt;&lt;h1&gt;Second document&lt;/h1&gt;&lt;/body&gt; &lt;/html&gt; </code></pre> <ol> <li>In IE – “First document”</li> <li>In FF – Second document”</li> <li>Both IE &amp; FF - “Second document”</li> <li>Both IE &amp; FF – “First document”</li> <li>Varies from browser to browser</li> </ol> <p>I encounter this question in a quiz. 5th option prompt me to post here. My additional questions 6. Will ever this kind of situation possible in real life? 7. Will results vary within browser versions too?</p> http://stackoverflow.com/questions/362324/is-there-any-free-online-exam-quiz-for-jquery 1 Is there any free online exam/quiz for jQuery? grega g 2008-12-12T09:40:36Z 2009-09-21T09:34:52Z <p>Is there any free online exam/quiz for jQuery?</p> http://stackoverflow.com/questions/1308267/algorithm-question-team-scheduling-quiz-design 3 Algorithm Question - Team Scheduling - Quiz design stringo0 2009-08-20T19:15:42Z 2009-08-25T12:37:40Z <p>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. </p> <p>There's 16 teams. There's 24 matches. 4 teams play in every match. Each team has to appear once against 12/16 teams and twice against the remaining 3/16, and has to appear exactly 6 times. Any ideas on how to do this? If there's a software that can do this, that'd be great as well.</p> <p><strong>UPDATE:</strong> I'm not sure if the above is even possible. Here is the minimum we're trying to accomplish:</p> <ul> <li>Number of games is not set.</li> <li>Each Game has 4 teams.</li> <li>Each team gets an equal number of games.</li> </ul> <p>-Is this possible?</p> http://stackoverflow.com/questions/1196103/interesting-sql-quiz 4 Interesting SQL quiz glaz666 2009-07-28T19:01:17Z 2009-07-28T19:07:01Z <p>Hi!</p> <p>Recently I came across with the following quiz. Imagine we have this table</p> <pre><code>+--------+ | colors | +--------+ | red | | black | | white | | green | | orange | +--------+ </code></pre> <p>The task is to write a SQL query that will select all pairs without allowing duplicates. Permutations are counted too ({red, black} = {black, red}, hence only one of the pair is allowed).</p> http://stackoverflow.com/questions/1176742/facebook-quiz-development -1 facebook quiz development vipinsahu 2009-07-24T10:00:20Z 2009-07-24T10:06:09Z <p>hi i want to make a quiz application on facebook using php ( the concept is after every question there is a next button by we reach to the next question ) how can i applied any transition effect (like in jquery)</p> http://stackoverflow.com/questions/1001663/removing-borders-on-review-quiz-in-captivate-2 0 Removing Borders on Review Quiz in Captivate 2. Craig 2009-06-16T13:59:23Z 2009-06-16T13:59:23Z <p>How do you remove the review quiz borders and background color when creating a quiz in Captivate 2. A border shows around the answers as if it is an input field. See: <a href="http://preview.promomart.com/prep/asi/cv/example.jpg" rel="nofollow">http://preview.promomart.com/prep/asi/cv/example.jpg</a> </p> http://stackoverflow.com/questions/986047/technical-tests-in-interviews-as-a-judge-of-employer 2 Technical tests in interviews as a judge of employer Unsliced 2009-06-12T10:41:24Z 2009-06-12T14:10:43Z <p>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. </p> <p>I appreciate that it is going to be more cost-effective that even a phone call to screen you but there seem to be two types of test out there, in the wild. </p> <p>The first type is the genuinely practical, e.g. <a href="http://stackoverflow.com/questions/32107/">Practical programming test in interview</a>, where you're sat in front of a 'real' machine and asked to code away. You'll be given a decent environment, have a web browser (for Google/MSDN/Stack Overflow/etc.) and a spec/question to answer as well you can within a time limit. </p> <p>Then there's the more formulaic, answering, almost trivia quiz-like, questions. You're in front of an application that asks you specific questions, possibly with multiple choice answers. They'll dress this up as wanting you to be able to answer from first principles, but realistically, it's just a cheaper way than having a hiring manager call you on the phone. </p> <p>As a candidate for interview, should I be wary of any company asking me to do a technical test that isn't a realistic simulation of a working environment? Or should I just deal with it, ace the easy test questions, accept the fact that I need to prove (again) that I know the really basic simple stuff off pat (or have at least read the first couple of chapters of any primer for the language I'm being tested on)? It's their job, I need to jump through their hoops in order to work there. </p> <p>If a company can't trust me to know the basics, should I want to work there? </p> <p><hr /></p> <p><strong>Update</strong>: thanks for the comments. In my case it's probably because I'm a gamekeeper turned poacher. I've been a hirer and interviewer and the muppets <a href="http://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/246082#246082">who blatantly lied</a> did annoy me. (Actually that's being harsh on muppets, I love <a href="http://en.wikipedia.org/wiki/Animal%5F%28Muppet%29" rel="nofollow">Animal</a> and <a href="http://en.wikipedia.org/wiki/Rowlf" rel="nofollow">Rowlf</a> the dog.) I'm just fed up answering the same textbook questions about mainly arcane trivia within the language again and again and again. </p> <p>Maybe that's the answer - this idiot filter is almost certainly what the recruitment agencies should do, but generally they're slave traders who don't know what or how developers do what they do, just in it for the commission. </p> http://stackoverflow.com/questions/369986/quiz-when-is-a-comment-not-a-comment -1 Quiz: When is a Comment Not A Comment? theschmitzer 2008-12-15T22:55:01Z 2009-05-24T19:30:22Z <p>Quick Quiz?</p> <p>What language has comments with side effects? In essence, comments which are <strong>not</strong> comments...</p> http://stackoverflow.com/questions/764957/quiz-contest 0 Quiz Contest. [closed] Anand 2009-04-19T06:25:25Z 2009-04-19T06:25:25Z <p>Hi, <br> "If a task can be done, it can be done in more than one way." <br><br> To benefit the community if a quiz is run where a common simple question is asked to a group of people selected by the site admins and they in turn post their code relating to the task along with a small explanation as to the benefits of using that approach here on SO. <br><br> The obvious benefit, for people who are at beginner or intermediate level is they can compare each ones route of achieving the task and then decide for themselves which one is better, in turn giving them a broader spectrum and enabling them to think out of the box and develop good code to better and better code to best.</p> <p>For example a simple question like "How to add items to a Listbox?" (apologies if the question is too simple :) but you understand what I mean) can be asked, someone would take the approach of creating an observable collection and binding it to the listbox, someone else would just use the Add method. <br><br> Its just a thought, there are lots of things that need to be considered like which programming language to target what topic to select etc etc. Please let me know what you guys think. <br><br> Many Thanks</p> http://stackoverflow.com/questions/627172/resharper-trap-convert-to-return-statement 1 Resharper Trap "Convert to 'return' statement" Rauhotz 2009-03-09T17:17:23Z 2009-03-09T18:02:03Z <p>Given the following routine:</p> <pre><code>private static object ParseNumber(string token, FieldDefinition def) { if (def.Fraction &gt; 0) return Double.Parse(token); else return Int64.Parse(token); } </code></pre> <p>Resharper offers me the option to refactor it into a statement with the ternary operator:</p> <pre><code>private static object ParseNumber(string token, FieldDefinition def) { return def.Fraction &gt; 0 ? Double.Parse(token) : Int64.Parse(token); } </code></pre> <p>Who can spot the trap?</p> http://stackoverflow.com/questions/482819/erlang-quiz 0 Erlang Quiz Andrew Dashin 2009-01-27T09:52:53Z 2009-01-28T02:15:28Z <p>Hi, folks.</p> <p>Many of you sometimes face with interesting code, problems, solutions. And all of this could be used as good interview questions or just for fun as any other quiz. Could you please share such things? I think it would be interesting to create an Erlang quiz - a list with good questions and answers.</p> http://stackoverflow.com/questions/72552/c-when-has-the-volatile-keyword-ever-helped-you 7 C++: When Has The volatile Keyword Ever Helped You? theschmitzer 2008-09-16T13:59:45Z 2008-09-17T11:55:18Z <p>I'd like to know of an example of a problem which was solved by adding the <strong>volatile</strong> keyword.</p> <p>I'm sure it has helped <em>somebody</em> solve <em>something</em>, but I don't know where I would actually apply it.</p> <p>In my case, it has <strong>never</strong> been the answer.</p> http://stackoverflow.com/questions/60331/c-quiz-singletons -3 C++ Quiz - Singletons theschmitzer 2008-09-13T04:40:37Z 2008-09-16T21:58:59Z <p>I'll soon be posting an article on <a href="http://theschmitzer.blogspot.com" rel="nofollow">my blog</a>, but I'd like to verify I haven't missed anything first.</p> <p>Find an example I've missed, and I'll cite you on my post...</p> <p>The topic is failed Singleton implementations - in what cases can you <em>accidentally</em> get multiple instances of a singleton?</p> <p>So far, I've come up with</p> <p>Race Condition on first call to instance() Incorporation into multiple DLLs or DLL and executable Template definition of a singleton - actually separate classes</p> <p>Any other ways I'm missing - perhaps with inheritance?</p> <p>Please help improve my post...</p>