"""04 — Deneme 1 Kolay (15Q) | Cevaplar: A=4 B=4 C=4 D=3"""
import sys; sys.path.insert(0, '.')
from _helpers import *

doc = new_doc()
heading(doc, "DENEME 1 — KOLAY")
subtitle(doc, "15 Soru  |  Süre: 20 Dakika  |  Kapsam: Unit 1 Temel")

# Q1→C
add_q(doc, 1, "I _______ 10 years old.", ["A) is","B) are","C) am","D) be"])
# Q2→A
add_q(doc, 2, "She _______ a student.", ["A) is","B) am","C) are","D) be"])
# Q3→D
add_q(doc, 3, "We _______ friends.", ["A) am","B) is","C) be","D) are"])
# Q4→B
add_q(doc, 4, "A: What time is it?\n B: It is quarter _______ eight. (8:15)", ["A) to","B) past","C) after","D) before"])
# Q5→D
add_q(doc, 5, "I wake up _______ 7 o'clock.", ["A) in","B) on","C) to","D) at"])
# Q6→B
add_q(doc, 6, "A: Are you a student?\n B: Yes, _______ .", ["A) you are","B) I am","C) you're","D) I'm"])
# Q7→C
add_q(doc, 7, "My sister is very kind. I love _______ .", ["A) she","B) him","C) her","D) he"])
# Q8→A (Why)
add_q(doc, 8, "A: _______ are you late for school?\n B: Because I wake up late.", ["A) Why","B) When","C) What","D) Where"])
# Q9→B
add_q(doc, 9, "A: Is your father at home?\n B: No, _______ . He is at work.", ["A) he is","B) he isn't","C) she isn't","D) it isn't"])
# Q10→A
add_q(doc, 10, "I _______ my teeth before breakfast.", ["A) brush","B) take","C) go","D) have"])
# Q11→C
add_q(doc, 11, "A: _______ your friends at the park?\n B: Yes, they are.", ["A) Is","B) Am","C) Are","D) Be"])
# Q12→D
add_q(doc, 12, "It is _______ past seven. (7:30)", ["A) quarter","B) o'clock","C) full","D) half"])
# Q13→C (Which)
add_q(doc, 13, "There are two bags on the desk. _______ one is yours?", ["A) Who","B) Where","C) Which","D) Why"])
# Q14→A
add_q(doc, 14, "I do my homework _______ school.", ["A) after","B) at","C) in","D) before"])
# Q15→B
add_q(doc, 15, "A: Give this book to Ali.\n B: OK. I give it to _______ .", ["A) he","B) him","C) his","D) she"])

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