"""05 — Deneme 2 Orta (15Q) | A=3 B=4 C=4 D=4"""
import sys; sys.path.insert(0, '.')
from _helpers import *

doc = new_doc()
heading(doc, "DENEME 2 — ORTA")
subtitle(doc, "15 Soru  |  Süre: 20 Dakika  |  Kapsam: Unit 2 Orta Düzey")

# Q1→D
add_q(doc, 1, "A: Has your father got a moustache?\n B: Yes, he _______ .",
    ["A) have","B) has got","C) hasn't","D) has"])
# Q2→B
add_q(doc, 2, "My parents _______ a shop in Nicosia.",
    ["A) has got","B) have got","C) hasn't got","D) haven't got"])
# Q3→C
add_q(doc, 3, "A: Can your little brother ride a bike?\n B: No, he _______ . He is only 3 years old.",
    ["A) can","B) hasn't","C) can't","D) don't"])
# Q4→A
add_q(doc, 4, "A _______ treats animals when they are sick.",
    ["A) vet","B) dentist","C) doctor","D) nurse"])
# Q5→D
add_q(doc, 5, "My uncle is a very _______ man. He runs 10 km every morning.",
    ["A) lazy","B) shy","C) weak","D) strong"])
# Q6→B
add_q(doc, 6, "A: Have they got a new teacher?\n B: No, _______ .",
    ["A) they have","B) they haven't","C) they hasn't","D) they has"])
# Q7→C
add_q(doc, 7, "She can _______ delicious cakes. She wants to be a chef.",
    ["A) cooks","B) cooking","C) cook","D) cooked"])
# Q8→A
add_q(doc, 8, "My sister is very _______ . She never talks to new people.",
    ["A) shy","B) talkative","C) friendly","D) brave"])
# Q9→C
add_q(doc, 9, "A: What does Mr. Brown look like?\n B: He is tall and _______ got dark hair.",
    ["A) have","B) is","C) has","D) can"])
# Q10→B
add_q(doc, 10, "A _______ works in a restaurant and brings food to the tables.",
    ["A) cook","B) waiter","C) pilot","D) journalist"])
# Q11→D
add_q(doc, 11, "My grandfather hasn't got much hair. He is _______ .",
    ["A) handsome","B) young","C) curly","D) bald"])
# Q12→C
add_q(doc, 12, "A: Can your sister speak English?\n B: Yes, she _______ . She is very good at it.",
    ["A) has","B) speaks","C) can","D) does"])
# Q13→B
add_q(doc, 13, "Police officers are _______ because they catch criminals.",
    ["A) lazy","B) brave","C) shy","D) funny"])
# Q14→D
add_q(doc, 14, "A: Have you got a sister?\n B: Yes, I _______ . Her name is Zeynep.",
    ["A) has","B) hasn't","C) haven't","D) have"])
# Q15→A
add_q(doc, 15, "A: What is his job?\n B: He is a _______. He flies aeroplanes.",
    ["A) pilot","B) driver","C) doctor","D) engineer"])

doc.save("05_Exam2_Medium.docx")
print("✅ 05_Exam2_Medium.docx")
