Search Header Logo

Nobel Quiz

Authored by Владислав Абрамов

Other

University

Used 10+ times

Nobel Quiz
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

1. Pick the code which shows the name of winner's names beginning with C and ending in n

SELECT name FROM nobel

WHERE winner LIKE '%C%' AND winner LIKE '%n%'

SELECT name FROM nobel

WHERE winner LIKE '%C' AND winner LIKE 'n%'

SELECT name FROM nobel

WHERE winner LIKE '%C' AND winner LIKE 'n%'

SELECT winner FROM nobel

WHERE winner LIKE '%C' AND winner LIKE 'n%'

SELECT winner FROM nobel

WHERE winner LIKE 'C%' AND winner LIKE '%n'

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

2. Select the code that shows how many Chemistry awards were given between 1950 and 1960

SELECT COUNT(subject) FROM nobel

WHERE subject = 'Chemistry'

AND BETWEEN 1950 and 1960

SELECT COUNT(subject) FROM nobel

WHERE subject = 'Chemistry'

AND yr BETWEEN (1950, 1960)

SELECT COUNT(subject) FROM nobel

WHERE subject = 'Chemistry'

AND yr BETWEEN 1950 and 1960

SELECT subject FROM nobel

WHERE subject = 'Chemistry'

AND yr BETWEEN 1950 and 1960

SELECT subject FROM nobel

WHERE subject = 'Chemistry'

AND yr BETWEEN (1950, 1960)

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

3. Pick the code that shows the amount of years where no Medicine awards were given

3. Pick the code that shows the amount of years where no Medicine awards were given

SELECT COUNT(DISTINCT yr) FROM nobel

WHERE yr NOT IN (SELECT DISTINCT yr FROM nobel WHERE subject = 'Medicine')

SELECT COUNT(DISTINCT yr) FROM nobel

WHERE yr NOT IN (SELECT DISTINCT yr FROM nobel WHERE subject = 'Medicine')

SELECT COUNT(DISTINCT yr) FROM nobel

WHERE yr NOT IN (SELECT DISTINCT yr FROM nobel WHERE subject NOT LIKE 'Medicine')

SELECT COUNT(DISTINCT yr) FROM nobel

WHERE yr NOT IN (SELECT DISTINCT yr FROM nobel WHERE subject NOT LIKE 'Medicine')

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

4. Select the result that would be obtained from the following code:

SELECT subject, winner FROM nobel WHERE winner LIKE 'Sir%' AND yr LIKE '196%'

Medicine John Eccles

Medicine Frank Macfarlane Burnet

Chemistry Sir Cyril Hinshelwood

Medicine Sir John Eccles

Medicine Sir Frank Macfarlane Burnet

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

5. Select the code which would show the year when neither a Physics or Chemistry award was given

SELECT yr FROM nobel

WHERE subject NOT IN(SELECT yr

FROM nobel

WHERE subject IN ('Chemistry','Physics'))

SELECT yr FROM nobel

WHERE subject NOT IN(SELECT subject

FROM nobel

WHERE subject IN ('Chemistry','Physics'))

SELECT yr FROM nobel

WHERE yr NOT IN(SELECT yr

FROM nobel

WHERE subject IN ('Chemistry','Physics'))

SELECT yr FROM nobel

WHERE yr NOT IN(SELECT subject

FROM nobel

WHERE subject IN ('Chemistry','Physics'))

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

6. Select the code which shows the years when a Medicine award was given but no Peace or Literature award was

SELECT DISTINCT yr

FROM nobel

WHERE subject='Medicine' AND

subject NOT IN(SELECT yr from nobel

WHERE subject='Literature')

AND yr NOT IN (SELECT yr

FROM nobel

WHERE subject='Peace')

SELECT DISTINCT yr

FROM nobel WHERE subject='Medicine'

AND yr NOT IN(SELECT yr from nobel

WHERE subject='Literature'

AND subject='Peace')

SELECT DISTINCT yr

FROM nobel

WHERE subject='Medicine'

AND yr NOT IN(SELECT yr FROM nobel

WHERE subject='Literature')

AND yr NOT IN (SELECT yr FROM nobel

WHERE subject='Peace')

SELECT DISTINCT yr

FROM subject

WHERE subject='Medicine'

AND yr NOT IN(SELECT yr from nobel

WHERE subject='Literature'

AND subject='Peace')

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

7. Pick the result that would be obtained from the following code:

SELECT subject, COUNT(subject)

FROM nobel

WHERE yr ='1960'

GROUP BY subject

1

1

2

1

1

Chemistry 6

Chemistry 3

Literature 1

Medicine 2

Peace 0

Physics 2

Chemistry 1

Literature 1

Medicine 2

Peace 1

Physics 1

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?