London Vocabulary Quiz

1. Londinium was built by…

A) The Romans
B) The Vikings
C) The Normans

2. Who was Queen Boudica?

A) A Roman general
B) A Celtic queen
C) A Saxon farmer

3. The London Underground is also called…

A) The Metro
B) The Subway
C) The Tube

4. When did the Underground begin?

A) 1863
B) 1963
C) 1763

5. The Oyster card is used for…

A) Buying food
B) Public transport
C) Theatre tickets

6. “Throng” means…

A) A famous place
B) A building
C) A large crowd of people

7. A “landmark” is…

A natural wonder
B) A historical or famous site
C) A street market

8. The “Thames” is…

A park
B) A palace
C) A river

9. “Bustling” means…

A) Noisy and full of activity
B) Empty
C) Dangerous

10. “Iconic” means…

A) Modern
B) Difficult
C) Widely recognized and symbolic

Student Quizzes Dashboard

Login

Username:

Password:

Los Angeles Quiz

1. Los Angeles is in which state?

2. Famous neighborhood for Hollywood stars?

3. LA is famous for which beach?

4. The main airport in LA?

5. Famous street for shopping and celebrities?

6. LA is famous for which industry?

7. LA’s famous observatory?

8. Famous museum in LA?

9. Iconic sign in LA?

10. LA is the home of which famous film district?

Santa Monica Quiz

1. Famous pier in Santa Monica?

2. Main street for shopping?

3. Popular beach activity?

4. Santa Monica is in which state?

5. Famous Ferris wheel location?

6. Santa Monica is near which city?

7. Santa Monica mountains are?

8. Famous bike path?

9. Popular local food?

10. Famous movie theater?

Big Sur Quiz

1. Big Sur is in which state?

2. Famous highway along Big Sur?

3. Big Sur is known for?

4. Famous lighthouse?

5. State park in Big Sur?

6. Famous waterfall?

7. Popular activity?

8. Famous bridge nearby?

9. Nearby town?

10. Big Sur coastline along which ocean?

London Quiz

1. London is the capital of?

2. Famous river in London?

3. Famous clock tower?

4. London is in which country?

5. Famous London bridge?

6. London Eye is?

7. Famous museum in London?

8. Famous park in London?

9. London tube is?

10. Famous clock in London?

Strasbourg Quiz

1. Strasbourg is in which country?

2. Famous river?

3. Strasbourg cathedral style?

4. Strasbourg is famous for?

5. Alsace region is known for?

6. Famous square in Strasbourg?

7. Strasbourg old town?

8. Famous canal in Strasbourg?

9. Strasbourg is famous for?

10. Strasbourg bridges?

Mozart Quiz

1. Mozart was born in which country?

2. Mozart’s famous opera?

3. Mozart’s birth year?

4. Mozart’s instrument?

5. Mozart composed for?

6. Mozart’s famous symphony?

7. Mozart lived during which period?

8. Mozart famous work for children?

9. Mozart birthplace city?

10. Mozart’s genre?

Los Angeles Vocabulary Quiz

1. What does “newcomer” mean?

A) A person who recently arrived
B) A person who wanders a lot
C) An old citizen

2. To “wander down a street” means…

A) To walk quickly with purpose
B) To walk slowly without a clear purpose
C) To drive through

3. To “hail a taxi” means…

A) To book it online
B) To chase it on foot
C) To call it by waving

4. “Old folks” usually refers to…

A) Parents
B) Teenagers
C) Elderly people

5. “Bling” means…

A) A type of music
B) Flashy jewelry/clothes
C) Old cars

6. To “boogie down” means…

A) To get very tired
B) To sit down
C) To dance or go have fun

7. “Leafy boulevards” are…

A) Streets with many trees
B) Streets with many shops
C) Streets with many taxis

8. “Head to Hollywood” means…

A) To wander without purpose
B) To go in the direction of Hollywood
C) To avoid Hollywood

9. In slang, “my old man” means…

A) A stranger
B) A grandfather
C) My dad

10. “Folks” usually refers to…

A) People in general
B) Buildings
C) Cars

London Vocabulary Quiz

1. Londinium was built by…

A) The Romans
B) The Vikings
C) The Normans

2. Who was Queen Boudica?

A) A Roman general
B) A Celtic queen
C) A Saxon farmer

3. The London Underground is also called…

A) The Metro
B) The Subway
C) The Tube

4. When did the Underground begin?

A) 1863
B) 1963
C) 1763

5. The Oyster card is used for…

A) Buying food
B) Public transport
C) Theatre tickets

6. “Throng” means…

A) A famous place
B) A building
C) A large crowd of people

7. A “landmark” is…

A natural wonder
B) A historical or famous site
C) A street market

8. The “Thames” is…

A park
B) A palace
C) A river

9. “Bustling” means…

A) Noisy and full of activity
B) Empty
C) Dangerous

10. “Iconic” means…

A) Modern
B) Difficult
C) Widely recognized and symbolic

// ---------- Los Angeles check function ---------- function checkAnswersLA(){ if(!currentStudent){ alert('Please log in first'); return; } const answers = { q1:"A", q2:"B", q3:"C", q4:"C", q5:"B", q6:"C", q7:"A", q8:"B", q9:"C", q10:"A" }; let score = 0; for(let i=1;i<=10;i++){ let qname = 'q'+i; let selected = document.querySelector(`#formLA_vocab input[name="${qname}"]:checked`)?.value || ''; let p = document.getElementById('la_vocab'+i); if(selected === answers[qname]){ p.innerHTML = '✅ Correct!'; score += 10; } else { p.innerHTML = '❌ Wrong!'; } } // award XP and persist currentStudent.xp = (currentStudent.xp || 0) + score; document.getElementById('studentXP').innerText = currentStudent.xp; localStorage.setItem(currentStudent.username, currentStudent.xp); updateLeague(); updateLeaderboard(); } // ---------- London check function ---------- function checkAnswersLON(){ if(!currentStudent){ alert('Please log in first'); return; } const answers = { q1:"A", q2:"B", q3:"C", q4:"A", q5:"B", q6:"C", q7:"B", q8:"C", q9:"A", q10:"C" }; let score = 0; for(let i=1;i<=10;i++){ let qname = 'q'+i; let selected = document.querySelector(`#formLON_vocab input[name="${qname}"]:checked`)?.value || ''; let p = document.getElementById('lon_vocab'+i); if(selected === answers[qname]){ p.innerHTML = '✅ Correct!'; score += 10; } else { p.innerHTML = '❌ Wrong!'; } } currentStudent.xp = (currentStudent.xp || 0) + score; document.getElementById('studentXP').innerText = currentStudent.xp; localStorage.setItem(currentStudent.username, currentStudent.xp); updateLeague(); updateLeaderboard(); } // ---------- Generic reset function ---------- function resetQuiz(formId){ // clears radio selections and clears result

messages const form = document.getElementById(formId); if(!form) return; form.reset(); // infer prefix: formLA_vocab -> la_vocab const prefix = formId.replace(/^form/,'').toLowerCase(); for(let i=1;i<=10;i++){ const p = document.getElementById(prefix + i); if(p) p.innerHTML = ''; } }