"""06 — Deneme 3 Zor (15Q) | Cevaplar: A=3 B=4 C=4 D=4 | Önemli noktalar"""
import sys; sys.path.insert(0, '.')
from _helpers import *

doc = new_doc()
heading(doc, "DENEME 3 — ZOR")
subtitle(doc, "15 Soru  |  Süre: 20 Dakika  |  Önemli Noktalar Odaklı")

# Q1→B (is)
add_q(doc, 1, "A: Is your mother at home?\n B: No. She _______ at work until 6 o'clock.",
    ["A) am","B) is","C) are","D) be"])
# Q2→D (aren't)
add_q(doc, 2, "A: Are you and your brother ready?\n B: No, we _______ . We are still eating breakfast.",
    ["A) is","B) isn't","C) not","D) aren't"])
# Q3→C (are/Our)
add_q(doc, 3, "My sister and I _______ twins. _______ birthdays are in June.",
    ["A) are / Us","B) is / Our","C) are / Our","D) am / We"])
# Q4→A (he is)
add_q(doc, 4, "A: Is David a good student?\n B: Yes, _______ . He always does his homework.",
    ["A) he is","B) he's","C) he does","D) he has"])
# Q5→B (her)
add_q(doc, 5, "Look at _______ ! She is dancing very well.",
    ["A) she","B) her","C) he","D) him"])
# Q6→D (What time / in)
add_q(doc, 6, "A: _______ is your English lesson?\n B: It is at 9 o'clock _______ the morning.",
    ["A) When / in","B) What time / at","C) When / at","D) What time / in"])
# Q7→A (him/his)
add_q(doc, 7, "My brother is only 2 years old. I help _______ to brush _______ teeth.",
    ["A) him / his","B) he / him","C) her / his","D) him / he"])
# Q8→C (they aren't)
add_q(doc, 8, "A: Are your parents at home now?\n B: No, _______ . They are at work.",
    ["A) they are","B) they isn't","C) they aren't","D) it isn't"])
# Q9→B (at)
add_q(doc, 9, "It is half past seven. I wake up at 7:30. I wake up _______ half past seven.",
    ["A) before","B) at","C) after","D) in"])
# Q10→C (at / at)
add_q(doc, 10, "My father gets up _______ 6:30 but I get up _______ 7 o'clock.",
    ["A) in / at","B) at / in","C) at / at","D) in / in"])
# Q11→D (to)
add_q(doc, 11, "A: What time is it?\n B: It is quarter _______ nine. (8:45)",
    ["A) past","B) half","C) after","D) to"])
# Q12→B (her)
add_q(doc, 12, "I like my grandmother very much. I visit _______ every weekend.",
    ["A) she","B) her","C) him","D) they"])
# Q13→C (us/her)
add_q(doc, 13, "My teacher gives _______ a lot of homework but I really like _______ .",
    ["A) we / she","B) our / him","C) us / her","D) they / it"])
# Q14→A (after)
add_q(doc, 14, "A: What do you do _______ breakfast?\n B: I brush my teeth.",
    ["A) after","B) before","C) at","D) in"])
# Q15→D (Which)
add_q(doc, 15, "A: _______ of these two shirts do you like?\n B: The blue one.",
    ["A) Who","B) What","C) Whose","D) Which"])

doc.save("06_Exam3_Hard.docx")
print("✅ 06_Exam3_Hard.docx (A=3 B=4 C=4 D=4)")
