{"id":9747,"date":"2025-11-19T14:55:06","date_gmt":"2025-11-19T11:55:06","guid":{"rendered":"https:\/\/research-says.com\/?page_id=9747"},"modified":"2025-11-19T15:15:13","modified_gmt":"2025-11-19T12:15:13","slug":"diagnostic-grammar-test","status":"publish","type":"page","link":"https:\/\/research-says.com\/tr\/diagnostic-grammar-test\/","title":{"rendered":"Diagnostic Grammar Test"},"content":{"rendered":"\n<div id=\"grammar-test\" style=\"max-width:700px;margin:20px auto;font-family:Arial;color:#000;\">\n  <h2>Grammar Level Test (B1 \u2192 C1)<\/h2>\n<br>\n  <p id=\"progress\">Question 1 of 20<\/p>\n\n  <div id=\"question-box\" style=\"margin:20px 0;padding:15px;border:1px solid #ccc;border-radius:8px;\">\n    <p id=\"question-text\" style=\"font-size:1.1rem;\"><\/p>\n    <div id=\"options\"><\/div>\n  <\/div>\n\n  <button id=\"next-btn\" style=\"display:none;padding:10px 18px;border:none;border-radius:6px;background:#0077ff;color:#fff;cursor:pointer;\">\n    Next Question\n  <\/button>\n\n  <div id=\"result\" style=\"margin-top:20px;font-size:1.2rem;font-weight:bold;\"><\/div>\n<\/div>\n\n<script>\nconst questions = [\n  \/\/ ---------------------- B1 QUESTIONS ----------------------\n  { q: \"I ___ to the gym twice a week.\", options: [\"go\", \"am going\", \"goes\", \"going\"], answer: 0 },\n  { q: \"She can't come right now because she ___ her homework.\", options: [\"finishes\", \"is finishing\", \"finish\", \"has finish\"], answer: 1 },\n  { q: \"If it rains, we ___ at home.\", options: [\"stay\", \"will stay\", \"stayed\", \"staying\"], answer: 1 },\n  { q: \"They ___ in London since 2015.\", options: [\"lived\", \"have lived\", \"are living\", \"live\"], answer: 1 },\n\n  \/\/ ---------------------- B1+\/B2 ----------------------\n  { q: \"I wish I ___ more time to prepare for the exam.\", options: [\"have\", \"had\", \"would have\", \"will have\"], answer: 1 },\n  { q: \"The book was so interesting that I couldn't ___ reading it.\", options: [\"stop\", \"to stop\", \"stopped\", \"stopping\"], answer: 0 },\n  { q: \"By the time we arrived, the film ___.\", options: [\"had started\", \"has started\", \"started\", \"was starting\"], answer: 0 },\n  { q: \"She asked me ___ I had seen her keys.\", options: [\"that\", \"what\", \"if\", \"why\"], answer: 2 },\n  { q: \"It was the first time he ___ such a big city.\", options: [\"visited\", \"had visited\", \"has visited\", \"was visiting\"], answer: 1 },\n  { q: \"You ___ to smoke here. It\u2019s forbidden.\", options: [\"don\u2019t have\", \"mustn't\", \"shouldn\u2019t\", \"might not\"], answer: 1 },\n\n  \/\/ ---------------------- B2+\/C1 ----------------------\n  { q: \"Not only ___ the presentation, but she also organised the event.\", options: [\"she prepared\", \"did she prepare\", \"prepared she\", \"she did prepare\"], answer: 1 },\n  { q: \"Had I known about the traffic, I ___ earlier.\", options: [\"left\", \"would have left\", \"had left\", \"would leave\"], answer: 1 },\n  { q: \"The manager insisted that he ___ the report immediately.\", options: [\"deliver\", \"delivered\", \"delivers\", \"has delivered\"], answer: 0 },\n  { q: \"The solution, ___ may appear simple, requires careful planning.\", options: [\"which\", \"that\", \"what\", \"who\"], answer: 0 },\n  { q: \"Hardly ___ the meeting started when the fire alarm went off.\", options: [\"had\", \"have\", \"did\", \"was\"], answer: 0 },\n  { q: \"He ended up winning the prize, ___ everybody thought was impossible.\", options: [\"that\", \"what\", \"which\", \"who\"], answer: 2 },\n\n  \/\/ ---------------------- High C1 ----------------------\n  { q: \"No sooner ___ the email than the phone rang.\", options: [\"he sent\", \"had he sent\", \"did he send\", \"he had sent\"], answer: 1 },\n  { q: \"The project, ___ completion took two years, was praised widely.\", options: [\"whose\", \"which\", \"that\", \"whom\"], answer: 0 },\n  { q: \"If the company ___ the proposal, we would have proceeded.\", options: [\"accepted\", \"had accepted\", \"accepts\", \"would accept\"], answer: 1 },\n  { q: \"Rarely ___ such a strong applicant.\", options: [\"we see\", \"do we see\", \"have we saw\", \"did we seen\"], answer: 1 }\n];\n\nlet current = 0;\nlet score = 0;\n\nfunction loadQuestion() {\n  const q = questions[current];\n  document.getElementById(\"progress\").textContent =\n    `Question ${current+1} of ${questions.length}`;\n  document.getElementById(\"question-text\").textContent = q.q;\n\n  const optionsDiv = document.getElementById(\"options\");\n  optionsDiv.innerHTML = \"\";\n\n  q.options.forEach((opt, i) => {\n    const btn = document.createElement(\"button\");\n    btn.textContent = opt;\n    btn.style.margin = \"8px 0\";\n    btn.style.padding = \"8px 14px\";\n    btn.style.display = \"block\";\n    btn.style.width = \"100%\";\n    btn.style.textAlign = \"left\";\n    btn.style.border = \"1px solid #ccc\";\n    btn.style.borderRadius = \"6px\";\n    btn.style.background = \"#f8f8f8\";\n    btn.style.cursor = \"pointer\";\n\n    btn.onclick = function() { checkAnswer(i); };\n\n    optionsDiv.appendChild(btn);\n  });\n}\n\nfunction checkAnswer(selected) {\n  if (selected === questions[current].answer) {\n    score++;\n    questions[current].userCorrect = true;   \/\/ Track for A2 logic\n  } else {\n    questions[current].userCorrect = false;  \/\/ Track for A2 logic\n  }\n  document.getElementById(\"next-btn\").style.display = \"inline-block\";\n}\n\ndocument.getElementById(\"next-btn\").onclick = function() {\n  current++;\n  if (current < questions.length) {\n    this.style.display = \"none\";\n    loadQuestion();\n  } else {\n    showResult();\n  }\n};\n\nfunction showResult() {\n  document.getElementById(\"question-box\").style.display = \"none\";\n  document.getElementById(\"next-btn\").style.display = \"none\";\n\n  \/\/ Count correct B1 items (first 4 questions)\n  let b1Correct = 0;\n  for (let i = 0; i < 4; i++) {\n    if (questions[i].userCorrect === true) {\n      b1Correct++;\n    }\n  }\n\n  let level = \"\";\n  if (score <= 8) level = \"B1\u2013B1+\";\n  else if (score <= 14) level = \"B2\";\n  else if (score <= 18) level = \"B2+\/C1\u2013\";\n  else level = \"C1 High\";\n\n  let a2Message = \"\";\n  if (b1Correct < 4) {\n    a2Message = `\n      <div style=\"margin-top:10px; font-size:1rem; color:#ffdf5d;\">\n        You may benefit from reviewing some A2 grammar before continuing.\n      <\/div>\n    `;\n  }\n\n  document.getElementById(\"result\").innerHTML = `\n    <div style=\"\n      color:#fff !important;\n      background:#222;\n      padding:18px;\n      border-radius:8px;\n      border:1px solid #444;\n      text-align:center;\n    \">\n      You scored <strong>${score}\/20<\/strong><br>\n      Your estimated level: <strong>${level}<\/strong><br>\n      ${a2Message}<br>\n\n      <button onclick=\"restartTest()\" style=\"\n        margin-top:10px;\n        padding:10px 18px;\n        background:#0077ff;\n        color:#fff;\n        border:none;\n        border-radius:6px;\n        cursor:pointer;\n      \">Retake Test<\/button>\n    <\/div>\n  `;\n}\n\nfunction restartTest() {\n  current = 0;\n  score = 0;\n\n  document.getElementById(\"result\").innerHTML = \"\";\n  document.getElementById(\"question-box\").style.display = \"block\";\n  document.getElementById(\"next-btn\").style.display = \"none\";\n\n  loadQuestion();\n}\n\nloadQuestion();\n<\/script>\n","protected":false},"excerpt":{"rendered":"<p>Grammar Level Test (B1 \u2192 C1) Question 1 of 20 Next Question<\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-9747","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Diagnostic Grammar Test - Language Education &amp; Consultancy<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/research-says.com\/tr\/diagnostic-grammar-test\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Diagnostic Grammar Test - Language Education &amp; Consultancy\" \/>\n<meta property=\"og:description\" content=\"Grammar Level Test (B1 \u2192 C1) Question 1 of 20 Next Question\" \/>\n<meta property=\"og:url\" content=\"https:\/\/research-says.com\/tr\/diagnostic-grammar-test\/\" \/>\n<meta property=\"og:site_name\" content=\"Language Education &amp; Consultancy\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/reliableeducationservices\/notifications\/\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-19T12:15:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/research-says.com\/wp-content\/uploads\/2019\/11\/cropped-cropped-cropped-cropped-Student-Teacher-B-W-resized-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"625\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@guveniliregitim\" \/>\n<meta name=\"twitter:label1\" content=\"Tahmini okuma s\u00fcresi\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 dakika\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/research-says.com\\\/diagnostic-grammar-test\\\/\",\"url\":\"https:\\\/\\\/research-says.com\\\/diagnostic-grammar-test\\\/\",\"name\":\"Diagnostic Grammar Test - Language Education &amp; Consultancy\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/research-says.com\\\/#website\"},\"datePublished\":\"2025-11-19T11:55:06+00:00\",\"dateModified\":\"2025-11-19T12:15:13+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/research-says.com\\\/diagnostic-grammar-test\\\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/research-says.com\\\/diagnostic-grammar-test\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/research-says.com\\\/diagnostic-grammar-test\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/research-says.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Diagnostic Grammar Test\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/research-says.com\\\/#website\",\"url\":\"https:\\\/\\\/research-says.com\\\/\",\"name\":\"Language Education &amp; Consultancy\",\"description\":\"Sharper Language. Stronger Communication.\",\"publisher\":{\"@id\":\"https:\\\/\\\/research-says.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/research-says.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"tr\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/research-says.com\\\/#organization\",\"name\":\"Compleat English\",\"alternateName\":\"IELTS Writing\",\"url\":\"https:\\\/\\\/research-says.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"tr\",\"@id\":\"https:\\\/\\\/research-says.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/research-says.com\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/cropped-cropped-plain-logo-e1772516744844.png\",\"contentUrl\":\"https:\\\/\\\/research-says.com\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/cropped-cropped-plain-logo-e1772516744844.png\",\"width\":150,\"height\":163,\"caption\":\"Compleat English\"},\"image\":{\"@id\":\"https:\\\/\\\/research-says.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/reliableeducationservices\\\/notifications\\\/\",\"https:\\\/\\\/x.com\\\/guveniliregitim\",\"https:\\\/\\\/www.instagram.com\\\/guveniliregitimhizmetleri\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Diagnostic Grammar Test - Language Education &amp; Consultancy","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/research-says.com\/tr\/diagnostic-grammar-test\/","og_locale":"tr_TR","og_type":"article","og_title":"Diagnostic Grammar Test - Language Education &amp; Consultancy","og_description":"Grammar Level Test (B1 \u2192 C1) Question 1 of 20 Next Question","og_url":"https:\/\/research-says.com\/tr\/diagnostic-grammar-test\/","og_site_name":"Language Education &amp; Consultancy","article_publisher":"https:\/\/www.facebook.com\/reliableeducationservices\/notifications\/","article_modified_time":"2025-11-19T12:15:13+00:00","og_image":[{"width":1000,"height":625,"url":"https:\/\/research-says.com\/wp-content\/uploads\/2019\/11\/cropped-cropped-cropped-cropped-Student-Teacher-B-W-resized-1.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_site":"@guveniliregitim","twitter_misc":{"Tahmini okuma s\u00fcresi":"1 dakika"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/research-says.com\/diagnostic-grammar-test\/","url":"https:\/\/research-says.com\/diagnostic-grammar-test\/","name":"Diagnostic Grammar Test - Language Education &amp; Consultancy","isPartOf":{"@id":"https:\/\/research-says.com\/#website"},"datePublished":"2025-11-19T11:55:06+00:00","dateModified":"2025-11-19T12:15:13+00:00","breadcrumb":{"@id":"https:\/\/research-says.com\/diagnostic-grammar-test\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/research-says.com\/diagnostic-grammar-test\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/research-says.com\/diagnostic-grammar-test\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/research-says.com\/"},{"@type":"ListItem","position":2,"name":"Diagnostic Grammar Test"}]},{"@type":"WebSite","@id":"https:\/\/research-says.com\/#website","url":"https:\/\/research-says.com\/","name":"Dil E\u011fitimi ve Dan\u0131\u015fmanl\u0131k","description":"Daha Etkili Dil. Daha G\u00fc\u00e7l\u00fc \u0130leti\u015fim.","publisher":{"@id":"https:\/\/research-says.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/research-says.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"tr"},{"@type":"Organization","@id":"https:\/\/research-says.com\/#organization","name":"Compleat English","alternateName":"IELTS Writing","url":"https:\/\/research-says.com\/","logo":{"@type":"ImageObject","inLanguage":"tr","@id":"https:\/\/research-says.com\/#\/schema\/logo\/image\/","url":"https:\/\/research-says.com\/wp-content\/uploads\/2026\/03\/cropped-cropped-plain-logo-e1772516744844.png","contentUrl":"https:\/\/research-says.com\/wp-content\/uploads\/2026\/03\/cropped-cropped-plain-logo-e1772516744844.png","width":150,"height":163,"caption":"Compleat English"},"image":{"@id":"https:\/\/research-says.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/reliableeducationservices\/notifications\/","https:\/\/x.com\/guveniliregitim","https:\/\/www.instagram.com\/guveniliregitimhizmetleri\/"]}]}},"_links":{"self":[{"href":"https:\/\/research-says.com\/tr\/wp-json\/wp\/v2\/pages\/9747","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/research-says.com\/tr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/research-says.com\/tr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/research-says.com\/tr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/research-says.com\/tr\/wp-json\/wp\/v2\/comments?post=9747"}],"version-history":[{"count":5,"href":"https:\/\/research-says.com\/tr\/wp-json\/wp\/v2\/pages\/9747\/revisions"}],"predecessor-version":[{"id":9761,"href":"https:\/\/research-says.com\/tr\/wp-json\/wp\/v2\/pages\/9747\/revisions\/9761"}],"wp:attachment":[{"href":"https:\/\/research-says.com\/tr\/wp-json\/wp\/v2\/media?parent=9747"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}