Difference between revisions of "BBC QUIZ"
From SQLZOO
| Line 3: | Line 3: | ||
{Select the code which gives the name of countries beginning with C | {Select the code which gives the name of countries beginning with C | ||
|type="()"} | |type="()"} | ||
| − | <input type='radio' | + | -<label for='1a' class='hover'><input type='radio' id='1a' name='q1' value='1' />A. SELECT name FROM bbc WHERE name BEGIN with C</label> |
| − | - | + | -<label for='1b' class='hover'><input type='radio' id='1b' name='q1' value='2' />B. SELECT name FROM bbc WHERE name LIKE '%C'</label> |
| − | <input type='radio' | + | -<label for='1c' class='hover'><input type='radio' id='1c' name='q1' value='3' />C. SELECT name FROM bbc WHERE name LIKE '%C%'</label> |
| − | - | + | -<label for='1d' class='hover'><input type='radio' id='1d' name='q1' value='4' />D. SELECT name FROM bbc WHERE name LIKE C</label> |
| − | <input type='radio' | + | +<label for='1e' class='hover'><input type='radio' id='1e' name='q1' value='5' />E. SELECT name FROM bbc WHERE name LIKE 'C%'</label> |
| − | - | + | |
| − | <input type='radio' | + | |
| − | + | ||
| − | <input type='radio' | + | |
| − | + | ||
{Select the code which shows just the population of United Kingdom? | {Select the code which shows just the population of United Kingdom? | ||
| Line 46: | Line 42: | ||
- E. SELECT name FROM WHERE name IS 'Scotland' | - E. SELECT name FROM WHERE name IS 'Scotland' | ||
</quiz> | </quiz> | ||
| − | |||
[[Category:Quizzes]] | [[Category:Quizzes]] | ||
Revision as of 12:20, 23 July 2012
BBC QUIZ