{"id":83927,"date":"2025-11-05T11:29:30","date_gmt":"2025-11-05T11:29:30","guid":{"rendered":"https:\/\/onlineexammaker.com\/kb\/20-binary-search-quiz-questions-and-answers\/"},"modified":"2025-11-05T11:29:30","modified_gmt":"2025-11-05T11:29:30","slug":"20-binary-search-quiz-questions-and-answers","status":"publish","type":"post","link":"https:\/\/onlineexammaker.com\/kb\/20-binary-search-quiz-questions-and-answers\/","title":{"rendered":"20 Binary Search Quiz Questions and Answers"},"content":{"rendered":"<p>Binary Search is an efficient algorithm used to find the position of a target value within a sorted array. It works by repeatedly dividing the search interval in half, comparing the target value to the middle element of the array. If the target matches the middle element, the search is successful. If the target is less than the middle element, the algorithm continues searching in the lower half; if greater, it searches in the upper half. This process repeats until the target is found or the search interval is empty. The algorithm requires the array to be sorted and operates with a time complexity of O(log n), making it ideal for large datasets.<\/p>\n<h3>Table of Contents<\/h3>\n<ul class=\"article_list\">\n<li><a href=\"#1\">Part 1: OnlineExamMaker &#8211; Generate and Share Binary Search Quiz with AI Automatically<\/a><\/li>\n<li><a href=\"#2\">Part 2: 20 Binary Search Quiz Questions &#038; Answers<\/a><\/li>\n<li><a href=\"#3\">Part 3: AI Question Generator &#8211; Automatically Create Questions for Your Next Assessment <\/a><\/li>\n<\/ul>\n<p><img decoding=\"async\" src=\"https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2026\/01\/2687-Binary-Search-quiz.webp\" alt=\"\"\/><\/p>\n<h3 id=\"1\">Part 1: OnlineExamMaker &#8211; Generate and Share Binary Search Quiz with AI Automatically<\/h3>\n<p>The quickest way to assess the Binary Search knowledge of candidates is using an AI assessment platform like OnlineExamMaker. With OnlineExamMaker AI Question Generator,  you are able to input content\u2014like text, documents, or topics\u2014and then automatically generate questions in various formats (multiple-choice, true\/false, short answer). Its AI Exam Grader can automatically grade the exam and generate insightful reports after your candidate submit the assessment.<\/p>\n<p><strong>What you will like:<\/strong><br \/>\n\u25cf Create a question pool through the question bank and specify how many questions you want to be randomly selected among these questions.<br \/>\n\u25cf Allow the quiz taker to answer by uploading video or a Word document, adding an image, and recording an audio file.<br \/>\n\u25cf Display the feedback for correct or incorrect answers instantly after a question is answered.<br \/>\n\u25cf Create a lead generation form to collect an exam taker&#8217;s information, such as email, mobile phone, work title, company profile and so on. <\/p>\n<div class=\"embed_video_blog\">\n<div class=\"embed-responsive embed-responsive-16by9\" style=\"margin-bottom:16px;\">\n <iframe class=\"embed-responsive-item\" src=\"https:\/\/www.youtube.com\/embed\/zlqho9igH2Y\"><\/iframe>\n<\/div>\n<\/div>\n<div class=\"getstarted-container\">\n<p style=\"margin-bottom: 13px;\">Automatically generate questions using AI<\/p>\n<div class=\"blog_double_btn clearfix\">\n<div class=\"col-sm-6  col-xs-12\">\n<div class=\"p-style-a\"><a class=\"get_started_btn\" href=\"https:\/\/onlineexammaker.com\/features\/ai-question-generator.html?refer=download_questions\" target=\"_blank\" rel=\"noopener\">Try AI Question Generator<\/a><\/div>\n<div class=\"p-style-b\">Generate questions for any topic<\/div>\n<\/div>\n<div class=\"col-sm-6  col-xs-12\">\n<div class=\"p-style-a\"><a class=\"get_started_btn\" href=\"https:\/\/onlineexammaker.com\/sign-up.html?refer=blog_btn\"> Create A Quiz<\/a><\/div>\n<div class=\"p-style-b\">100% free forever<\/div>\n<\/div>\n<\/div>\n<\/div>\n<h3 id=\"2\">Part 2: 20 Binary Search Quiz Questions &#038; Answers<\/h3>\n<p><button id=\"copyquestionsBtn\" type=\"button\" onclick=\"myFunction()\">Copy Quiz Questions<\/button>\u00a0\u00a0or\u00a0\u00a0<button id=\"genquestionsBtn\" class=\"genbtnstyle\" type=\"button\" onclick=\"myFunction1()\">Generate Questions using AI<\/button><\/p>\n<div id=\"copy_questions\">\n<p>1. Question: What is the primary condition required for using Binary Search on an array?<br \/>\n   A) The array must be unsorted<br \/>\n   B) The array must be sorted<br \/>\n   C) The array must contain duplicate elements<br \/>\n   D) The array must be empty<br \/>\n   Answer: B<br \/>\n   Explanation: Binary Search requires a sorted array to efficiently divide the search space in half by comparing the target with the middle element.<\/p>\n<p>2. Question: In Binary Search, what happens when the target element is equal to the middle element of the array?<br \/>\n   A) The search continues on the left half<br \/>\n   B) The search continues on the right half<br \/>\n   C) The element is found and the search ends<br \/>\n   D) The array is reshuffled<br \/>\n   Answer: C<br \/>\n   Explanation: If the target matches the middle element, Binary Search returns the index immediately, as the element has been located.<\/p>\n<p>3. Question: What is the time complexity of Binary Search in the best case?<br \/>\n   A) O(1)<br \/>\n   B) O(n)<br \/>\n   C) O(log n)<br \/>\n   D) O(n^2)<br \/>\n   Answer: A<br \/>\n   Explanation: In the best case, if the target is the middle element, Binary Search finds it in constant time, O(1).<\/p>\n<p>4. Question: For an array of 16 elements, how many comparisons does Binary Search make in the worst case to find an element?<br \/>\n   A) 2<br \/>\n   B) 4<br \/>\n   C) 8<br \/>\n   D) 16<br \/>\n   Answer: B<br \/>\n   Explanation: Binary Search halves the array each time; for 16 elements, it takes 4 divisions (2^4 = 16), so up to 4 comparisons in the worst case.<\/p>\n<p>5. Question: Which of the following is NOT a step in the Binary Search algorithm?<br \/>\n   A) Compare the target with the middle element<br \/>\n   B) Divide the array into two halves<br \/>\n   C) Sort the array if it&#8217;s not already sorted<br \/>\n   D) Repeat the process on the appropriate half<br \/>\n   Answer: C<br \/>\n   Explanation: Binary Search assumes the array is already sorted; sorting is not part of the algorithm itself.<\/p>\n<p>6. Question: What is the space complexity of an iterative Binary Search?<br \/>\n   A) O(1)<br \/>\n   B) O(n)<br \/>\n   C) O(log n)<br \/>\n   D) O(n log n)<br \/>\n   Answer: A<br \/>\n   Explanation: Iterative Binary Search uses a constant amount of extra space, regardless of the input size, making its space complexity O(1).<\/p>\n<p>7. Question: In a sorted array [1, 3, 5, 7, 9], what is the middle element when searching for 5?<br \/>\n   A) 1<br \/>\n   B) 3<br \/>\n   C) 5<br \/>\n   D) 7<br \/>\n   Answer: C<br \/>\n   Explanation: For an array of 5 elements, the middle index is 2 (0-based), which corresponds to the element 5.<\/p>\n<p>8. Question: Binary Search can be implemented using which of the following methods?<br \/>\n   A) Recursion only<br \/>\n   B) Iteration only<br \/>\n   C) Both recursion and iteration<br \/>\n   D) Neither recursion nor iteration<br \/>\n   Answer: C<br \/>\n   Explanation: Binary Search can be implemented iteratively with a loop or recursively by calling the function on subarrays.<\/p>\n<p>9. Question: What is the worst-case time complexity of Binary Search?<br \/>\n   A) O(1)<br \/>\n   B) O(n)<br \/>\n   C) O(log n)<br \/>\n   D) O(n log n)<br \/>\n   Answer: C<br \/>\n   Explanation: In the worst case, Binary Search requires logarithmic comparisons, resulting in O(log n) time complexity.<\/p>\n<p>10. Question: If a sorted array has an even number of elements, how is the middle element selected in Binary Search?<br \/>\n    A) The first of the two middle elements<br \/>\n    B) The second of the two middle elements<br \/>\n    C) The average of the two middle elements<br \/>\n    D) It depends on the programming language<br \/>\n    Answer: A or B (typically the lower middle)<br \/>\n    Explanation: Most implementations choose the lower middle index (e.g., for indices 0-3, middle is 1), but consistency in calculation ensures correctness.<\/p>\n<p>11. Question: Which searching algorithm is Binary Search generally faster than for large sorted arrays?<br \/>\n    A) Linear Search<br \/>\n    B) Depth-First Search<br \/>\n    C) Breadth-First Search<br \/>\n    D) Quick Sort<br \/>\n    Answer: A<br \/>\n    Explanation: Binary Search is faster than Linear Search on sorted arrays because it reduces the search space exponentially with each step.<\/p>\n<p>12. Question: In Binary Search, if the target is less than the middle element, where does the search continue?<br \/>\n    A) The right half of the array<br \/>\n    B) The left half of the array<br \/>\n    C) The entire array<br \/>\n    D) A random half<br \/>\n    Answer: B<br \/>\n    Explanation: If the target is smaller than the middle element, it must be in the left subarray, so the search narrows to that half.<\/p>\n<p>13. Question: What would happen if you apply Binary Search on an unsorted array?<br \/>\n    A) It will still work correctly<br \/>\n    B) It may return incorrect results<br \/>\n    C) It will sort the array first<br \/>\n    D) It will throw an error<br \/>\n    Answer: B<br \/>\n    Explanation: Binary Search assumes a sorted array; on an unsorted one, it might not find the element or return the wrong index.<\/p>\n<p>14. Question: For a sorted array of 1 element, how many steps does Binary Search take to find the element if it exists?<br \/>\n    A) 0<br \/>\n    B) 1<br \/>\n    C) 2<br \/>\n    D) Depends on the element<br \/>\n    Answer: B<br \/>\n    Explanation: The array has only one element, so Binary Search will compare the target with it in one step.<\/p>\n<p>15. Question: Binary Search divides the search interval in what manner?<br \/>\n    A) By thirds<br \/>\n    B) By halves<br \/>\n    C) Randomly<br \/>\n    D) Sequentially<br \/>\n    Answer: B<br \/>\n    Explanation: It repeatedly divides the sorted array into two halves until the target is found or the interval is empty.<\/p>\n<p>16. Question: What is the average-case time complexity of Binary Search?<br \/>\n    A) O(1)<br \/>\n    B) O(n)<br \/>\n    C) O(log n)<br \/>\n    D) O(n^2)<br \/>\n    Answer: C<br \/>\n    Explanation: On average, Binary Search performs logarithmically fewer operations than linear search, resulting in O(log n) complexity.<\/p>\n<p>17. Question: In a recursive implementation of Binary Search, what is passed to the recursive call?<br \/>\n    A) The entire array<br \/>\n    B) A subarray or its bounds<br \/>\n    C) Only the target element<br \/>\n    D) Nothing<br \/>\n    Answer: B<br \/>\n    Explanation: Recursive Binary Search passes the subarray (or low and high indices) to narrow down the search space.<\/p>\n<p>18. Question: Why is Binary Search not suitable for unsorted data?<br \/>\n    A) It requires extra memory<br \/>\n    B) It assumes the data is ordered<br \/>\n    C) It is too slow<br \/>\n    D) It only works on strings<br \/>\n    Answer: B<br \/>\n    Explanation: Binary Search relies on the array being sorted to make accurate comparisons and decisions about which half to search.<\/p>\n<p>19. Question: If Binary Search is applied to a sorted array with duplicates, what might happen?<br \/>\n    A) It will always find the first occurrence<br \/>\n    B) It may find any occurrence<br \/>\n    C) It will throw an error<br \/>\n    D) It will sort the array again<br \/>\n    Answer: B<br \/>\n    Explanation: Standard Binary Search will find one occurrence of the duplicate element, but not necessarily the first or last one.<\/p>\n<p>20. Question: Compared to Linear Search, when is Binary Search most efficient?<br \/>\n    A) For small arrays<br \/>\n    B) For large sorted arrays<br \/>\n    C) For unsorted arrays<br \/>\n    D) When the array is partially sorted<br \/>\n    Answer: B<br \/>\n    Explanation: Binary Search excels with large, sorted datasets due to its logarithmic time complexity, making it more efficient than Linear Search.<\/p>\n<\/div>\n<p><button id=\"copyquestionsBtn\" type=\"button\" onclick=\"myFunction()\">Copy Quiz Questions<\/button>\u00a0\u00a0or\u00a0\u00a0<button id=\"genquestionsBtn\" class=\"genbtnstyle\" type=\"button\" onclick=\"myFunction1()\">Generate Questions using AI<\/button><\/p>\n<h3 id=\"3\">Part 3: AI Question Generator &#8211; Automatically Create Questions for Your Next Assessment<\/h3>\n<div class=\"embed_video_blog\">\n<div class=\"embed-responsive embed-responsive-16by9\" style=\"margin-bottom:16px;\">\n <iframe class=\"embed-responsive-item\" src=\"https:\/\/www.youtube.com\/embed\/zlqho9igH2Y\"><\/iframe>\n<\/div>\n<\/div>\n<div class=\"getstarted-container\">\n<p style=\"margin-bottom: 13px;\">Automatically generate questions using AI<\/p>\n<div class=\"blog_double_btn clearfix\">\n<div class=\"col-sm-6  col-xs-12\">\n<div class=\"p-style-a\"><a class=\"get_started_btn\" href=\"https:\/\/onlineexammaker.com\/features\/ai-question-generator.html?refer=download_questions\" target=\"_blank\" rel=\"noopener\">Try AI Question Generator<\/a><\/div>\n<div class=\"p-style-b\">Generate questions for any topic<\/div>\n<\/div>\n<div class=\"col-sm-6  col-xs-12\">\n<div class=\"p-style-a\"><a class=\"get_started_btn\" href=\"https:\/\/onlineexammaker.com\/sign-up.html?refer=blog_btn\"> Create A Quiz<\/a><\/div>\n<div class=\"p-style-b\">100% free forever<\/div>\n<\/div>\n<\/div>\n<\/div>\n<p><script src=\"https:\/\/unpkg.com\/@popperjs\/core@2\"><\/script><br \/>\n<script src=\"https:\/\/unpkg.com\/tippy.js@6\"><\/script><\/p>\n<p><script type=\"text\/javascript\">\nfunction myFunction() {\nvar copyText = document.getElementById(\"copy_questions\");console.log(copyText.innerText);navigator.clipboard.writeText(copyText.innerText);\n}\nfunction myFunction1() {\n\u00a0  \u00a0 \u00a0 window.open(\"https:\/\/onlineexammaker.com\/features\/ai-question-generator.html\");\n\u00a0 }\nvar copy1, copy2;\n        tippy('#copyquestionsBtn', {\n        'content': \"Copy questions to clipboard\",\n       trigger: 'mouseenter',\n       'onCreate':function(instance){\n              copy1 = instance;\n       },\n       'onTrigger' : function(instance, event) {\n              copy2.hide();\n       }\n       });\n       tippy('#copyquestionsBtn', {\n       'content': \"Copied successfully\",\n       trigger: 'click',\n       'onCreate':function(instance){\n              copy2 = instance;\n       },\n       'onTrigger' : function(instance, event) {\n              copy1.hide();\n       }\n       });\ntippy('#genquestionsBtn', {\n        'content': \"Generate questions using AI for free\",\n         trigger: 'mouseenter'\n       });\n<\/script><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Binary Search is an efficient algorithm used to find the position of a target value within a sorted array. It works by repeatedly dividing the search interval in half, comparing the target value to the middle element of the array. If the target matches the middle element, the search is successful. If the target is [&hellip;]<\/p>\n","protected":false},"author":8,"featured_media":83568,"comment_status":"","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[353],"tags":[],"class_list":["post-83927","post","type-post","status-publish","format-standard","hentry","category-questions-answers"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v20.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>20 Binary Search Quiz Questions and Answers - OnlineExamMaker Blog<\/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:\/\/onlineexammaker.com\/kb\/20-binary-search-quiz-questions-and-answers\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"20 Binary Search Quiz Questions and Answers - OnlineExamMaker Blog\" \/>\n<meta property=\"og:description\" content=\"Binary Search is an efficient algorithm used to find the position of a target value within a sorted array. It works by repeatedly dividing the search interval in half, comparing the target value to the middle element of the array. If the target matches the middle element, the search is successful. If the target is [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/onlineexammaker.com\/kb\/20-binary-search-quiz-questions-and-answers\/\" \/>\n<meta property=\"og:site_name\" content=\"OnlineExamMaker Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-05T11:29:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2026\/01\/2687-Binary-Search-quiz.webp\" \/>\n<meta name=\"author\" content=\"Rebecca\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Rebecca\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/onlineexammaker.com\/kb\/20-binary-search-quiz-questions-and-answers\/\",\"url\":\"https:\/\/onlineexammaker.com\/kb\/20-binary-search-quiz-questions-and-answers\/\",\"name\":\"20 Binary Search Quiz Questions and Answers - OnlineExamMaker Blog\",\"isPartOf\":{\"@id\":\"https:\/\/onlineexammaker.com\/kb\/#website\"},\"datePublished\":\"2025-11-05T11:29:30+00:00\",\"dateModified\":\"2025-11-05T11:29:30+00:00\",\"author\":{\"@id\":\"https:\/\/onlineexammaker.com\/kb\/#\/schema\/person\/8447ed5937ab8046fa68476e432b32b2\"},\"breadcrumb\":{\"@id\":\"https:\/\/onlineexammaker.com\/kb\/20-binary-search-quiz-questions-and-answers\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/onlineexammaker.com\/kb\/20-binary-search-quiz-questions-and-answers\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/onlineexammaker.com\/kb\/20-binary-search-quiz-questions-and-answers\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/onlineexammaker.com\/kb\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"20 Binary Search Quiz Questions and Answers\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/onlineexammaker.com\/kb\/#website\",\"url\":\"https:\/\/onlineexammaker.com\/kb\/\",\"name\":\"OnlineExamMaker Blog\",\"description\":\"OnlineExamMaker\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/onlineexammaker.com\/kb\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/onlineexammaker.com\/kb\/#\/schema\/person\/8447ed5937ab8046fa68476e432b32b2\",\"name\":\"Rebecca\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/onlineexammaker.com\/kb\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/5f03edf06dd3745ea73e610a6d830a63?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/5f03edf06dd3745ea73e610a6d830a63?s=96&r=g\",\"caption\":\"Rebecca\"},\"url\":\"https:\/\/onlineexammaker.com\/kb\/author\/rebeccaoem\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"20 Binary Search Quiz Questions and Answers - OnlineExamMaker Blog","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:\/\/onlineexammaker.com\/kb\/20-binary-search-quiz-questions-and-answers\/","og_locale":"en_US","og_type":"article","og_title":"20 Binary Search Quiz Questions and Answers - OnlineExamMaker Blog","og_description":"Binary Search is an efficient algorithm used to find the position of a target value within a sorted array. It works by repeatedly dividing the search interval in half, comparing the target value to the middle element of the array. If the target matches the middle element, the search is successful. If the target is [&hellip;]","og_url":"https:\/\/onlineexammaker.com\/kb\/20-binary-search-quiz-questions-and-answers\/","og_site_name":"OnlineExamMaker Blog","article_published_time":"2025-11-05T11:29:30+00:00","og_image":[{"url":"https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2026\/01\/2687-Binary-Search-quiz.webp"}],"author":"Rebecca","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Rebecca","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/onlineexammaker.com\/kb\/20-binary-search-quiz-questions-and-answers\/","url":"https:\/\/onlineexammaker.com\/kb\/20-binary-search-quiz-questions-and-answers\/","name":"20 Binary Search Quiz Questions and Answers - OnlineExamMaker Blog","isPartOf":{"@id":"https:\/\/onlineexammaker.com\/kb\/#website"},"datePublished":"2025-11-05T11:29:30+00:00","dateModified":"2025-11-05T11:29:30+00:00","author":{"@id":"https:\/\/onlineexammaker.com\/kb\/#\/schema\/person\/8447ed5937ab8046fa68476e432b32b2"},"breadcrumb":{"@id":"https:\/\/onlineexammaker.com\/kb\/20-binary-search-quiz-questions-and-answers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/onlineexammaker.com\/kb\/20-binary-search-quiz-questions-and-answers\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/onlineexammaker.com\/kb\/20-binary-search-quiz-questions-and-answers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/onlineexammaker.com\/kb\/"},{"@type":"ListItem","position":2,"name":"20 Binary Search Quiz Questions and Answers"}]},{"@type":"WebSite","@id":"https:\/\/onlineexammaker.com\/kb\/#website","url":"https:\/\/onlineexammaker.com\/kb\/","name":"OnlineExamMaker Blog","description":"OnlineExamMaker","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/onlineexammaker.com\/kb\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/onlineexammaker.com\/kb\/#\/schema\/person\/8447ed5937ab8046fa68476e432b32b2","name":"Rebecca","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/onlineexammaker.com\/kb\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/5f03edf06dd3745ea73e610a6d830a63?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5f03edf06dd3745ea73e610a6d830a63?s=96&r=g","caption":"Rebecca"},"url":"https:\/\/onlineexammaker.com\/kb\/author\/rebeccaoem\/"}]}},"_links":{"self":[{"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/posts\/83927"}],"collection":[{"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/users\/8"}],"replies":[{"embeddable":true,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/comments?post=83927"}],"version-history":[{"count":0,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/posts\/83927\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/media\/83568"}],"wp:attachment":[{"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/media?parent=83927"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/categories?post=83927"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/tags?post=83927"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}