"""04 — Deneme 1 Kolay (15Q) | 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 2 Temel")

# Q1→C (has got)
add_q(doc, 1, "She _______ a new bicycle.",
    ["A) have got","B) haven't got","C) has got","D) hasn't got"])
# Q2→A (have got)
add_q(doc, 2, "I _______ a big family.",
    ["A) have got","B) has got","C) haven't got","D) hasn't got"])
# Q3→D (can)
add_q(doc, 3, "A: _______ you swim?\n B: Yes, I can.",
    ["A) Are","B) Have","C) Do","D) Can"])
# Q4→B (doctor)
add_q(doc, 4, "A _______ works at a hospital and helps sick people.",
    ["A) teacher","B) doctor","C) pilot","D) farmer"])
# Q5→A (tall)
add_q(doc, 5, "My brother is very _______ . He is 185 cm.",
    ["A) tall","B) short","C) small","D) plump"])
# Q6→D (can't)
add_q(doc, 6, "A fish _______ fly.",
    ["A) can","B) has got","C) can't","D) isn't"])
# Q7→B (hasn't got)
add_q(doc, 7, "He _______ a car. He walks to work.",
    ["A) have got","B) hasn't got","C) haven't got","D) has got"])
# Q8→C (kind)
add_q(doc, 8, "My grandmother always helps people. She is very _______ .",
    ["A) lazy","B) rude","C) kind","D) brave"])
# Q9→A (Have / got)
add_q(doc, 9, "A: _______ you _______ a pet?\n B: Yes, I have got a cat.",
    ["A) Have / got","B) Has / got","C) Do / got","D) Can / got"])
# Q10→C (firefighter)
add_q(doc, 10, "A _______ puts out fires and saves people.",
    ["A) nurse","B) police officer","C) firefighter","D) teacher"])
# Q11→B (curly)
add_q(doc, 11, "She has got _______ hair. It is not straight.",
    ["A) straight","B) curly","C) dark","D) blonde"])
# Q12→D (fly)
add_q(doc, 12, "A pilot can _______ a plane.",
    ["A) swims","B) flying","C) flies","D) fly"])
# Q13→A (Has / got)
add_q(doc, 13, "A: _______ she _______ brown eyes?\n B: Yes, she has.",
    ["A) Has / got","B) Have / got","C) Can / got","D) Is / got"])
# Q14→C (sing)
add_q(doc, 14, "A singer is a person who can _______ well.",
    ["A) cooks","B) dances","C) sing","D) runs"])
# Q15→B (friendly)
add_q(doc, 15, "My best friend always talks to new people. He is very _______ .",
    ["A) shy","B) friendly","C) lazy","D) rude"])

doc.save("04_Exam1_Easy.docx")
print("✅ 04_Exam1_Easy.docx")
