{"id":12819,"date":"2023-07-27T03:51:44","date_gmt":"2023-07-27T03:51:44","guid":{"rendered":"https:\/\/onlineexammaker.com\/kb\/?p=12819"},"modified":"2023-09-08T02:30:14","modified_gmt":"2023-09-08T02:30:14","slug":"30-python-quiz-questions-and-answers","status":"publish","type":"post","link":"https:\/\/onlineexammaker.com\/kb\/30-python-quiz-questions-and-answers\/","title":{"rendered":"30 Python Quiz Questions and Answers"},"content":{"rendered":"<p>Python is a versatile and popular high-level programming language known for its simplicity, readability, and extensive range of libraries and frameworks. It was created by Guido van Rossum and released in 1991, designed with a focus on code readability and ease of use.<\/p>\n<p>Python offers a clean and intuitive syntax, making it beginner-friendly and widely adopted by programmers of all levels. It emphasizes code readability by utilizing indentation and a minimalistic approach, which allows developers to write clear and concise code.<\/p>\n<p>One of Python&#8217;s key strengths is its extensive standard library, which provides a vast collection of pre-built modules and functions for various tasks. Additionally, Python&#8217;s open-source nature has led to a vibrant community that contributes to an ever-growing ecosystem of third-party libraries, making it suitable for a wide range of applications, including web development, data analysis, scientific computing, artificial intelligence, machine learning, and automation.<\/p>\n<p>Python supports multiple programming paradigms, including procedural, object-oriented, and functional programming styles. This versatility allows developers to choose the most appropriate approach for their projects.<\/p>\n<p>Overall, Python&#8217;s simplicity, readability, extensive libraries, and broad community support have made it a go-to language for developers across various domains, contributing to its widespread adoption and popularity in the programming community.<\/p>\n<div class=\"refer_box\">\n<p class=\"refer_box_title\">Just to let you know<\/p>\n<p class=\"refer_box_text\">Sign up for a <a href=\"https:\/\/onlineexammaker.com?refer=blog_refer\">free OnlineExamMaker account<\/a> to create an interactive online quiz in minutes &#8211; automatic grading &#038; mobile friendly.<\/p>\n<\/div>\n<h3>In this article<\/h3>\n<ul class=\"article_list\">\n<li><a href=\"#1\">Part 1: 30 Python quiz questions &#038; answers<\/a><\/li>\n<li><a href=\"#2\">Part 2: Download Python questions &#038; answers for free<\/a><\/l1>\n<li><a href=\"#3\">Part 3: Free online quiz creator &#8211; OnlineExamMaker<\/a><\/l1>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2023\/07\/Python-quiz.webp\" alt=\"\" width=\"850\" height=\"425\" class=\"alignnone size-full wp-image-12820\" srcset=\"https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2023\/07\/Python-quiz.webp 850w, https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2023\/07\/Python-quiz-300x150.webp 300w, https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2023\/07\/Python-quiz-768x384.webp 768w\" sizes=\"(max-width: 850px) 100vw, 850px\" \/><\/p>\n<h3 id=\"1\">Part 1: 30 Python quiz questions &#038; answers<\/h3>\n<p>1. What is Python?<br \/>\n   a) A type of snake<br \/>\n   b) A high-level programming language<br \/>\n   c) A mathematical equation<br \/>\n   d) A computer operating system<br \/>\n   Answer: b) A high-level programming language<\/p>\n<p>2. What is the syntax used for defining a function in Python?<br \/>\n   a) def<br \/>\n   b) fun<br \/>\n   c) function<br \/>\n   d) define<br \/>\n   Answer: a) def<\/p>\n<p>3. Which of the following is not a valid variable name in Python?<br \/>\n   a) my_variable<br \/>\n   b) 123_variable<br \/>\n   c) _variable<br \/>\n   d) variable123<br \/>\n   Answer: b) 123_variable<\/p>\n<p>4. What is the output of the following code snippet?<br \/>\n   print(3 + 4 * 2)<br \/>\n   a) 14<br \/>\n   b) 11<br \/>\n   c) 10<br \/>\n   d) 21<br \/>\n   Answer: b) 11<\/p>\n<p>5. How do you comment a single line in Python?<br \/>\n   a) \/\/ This is a comment<br \/>\n   b) \/* This is a comment *\/<br \/>\n   c) # This is a comment<br \/>\n   d) <!-- This is a comment --><br \/>\n   Answer: c) # This is a comment<\/p>\n<p>6. What is the output of the following code snippet?<br \/>\n   my_string = &#8220;Hello, World!&#8221;<br \/>\n   print(my_string[7:])<br \/>\n   a) Hello<br \/>\n   b) World<br \/>\n   c) Hello, World<br \/>\n   d) Error<br \/>\n   Answer: b) World<\/p>\n<p>7. What is the correct way to create an empty list in Python?<br \/>\n   a) my_list = []<br \/>\n   b) my_list = {}<br \/>\n   c) my_list = ()<br \/>\n   d) my_list = [&#8220;&#8221;]<br \/>\n   Answer: a) my_list = []<\/p>\n<p>8. Which data type is used to store a sequence of characters in Python?<br \/>\n   a) int<br \/>\n   b) float<br \/>\n   c) str<br \/>\n   d) bool<br \/>\n   Answer: c) str<\/p>\n<p>9. What is the output of the following code snippet?<br \/>\n   print(len(&#8220;Python&#8221;))<br \/>\n   a) 5<br \/>\n   b) 6<br \/>\n   c) 7<br \/>\n   d) Error<br \/>\n   Answer: a) 5<\/p>\n<p>10. How do you convert a string to lowercase in Python?<br \/>\n    a) string.upper()<br \/>\n    b) string.lower()<br \/>\n    c) string.capitalize()<br \/>\n    d) string.swapcase()<br \/>\n    Answer: b) string.lower()<\/p>\n<p>11. Which keyword is used to exit a loop prematurely in Python?<br \/>\n    a) exit<br \/>\n    b) return<br \/>\n    c) continue<br \/>\n    d) break<br \/>\n    Answer: d) break<\/p>\n<p>12. What is the result of the following code snippet?<br \/>\n    my_tuple = (&#8220;apple&#8221;, &#8220;banana&#8221;, &#8220;cherry&#8221;)<br \/>\n    print(len(my_tuple))<br \/>\n    a) 3<br \/>\n    b) 5<br \/>\n    c) 6<br \/>\n    d) Error<br \/>\n    Answer: a) 3<\/p>\n<p>13. Which operator is used for exponentiation in Python?<br \/>\n    a) ^<br \/>\n    b) **<br \/>\n    c) %<br \/>\n    d) \/\/<br \/>\n    Answer: b) **<\/p>\n<p>14. How do you check if a key exists in a dictionary?<br \/>\n    a) key.exists()<br \/>\n    b) key.in()<br \/>\n    c) key.isin()<br \/>\n    d) key in dictionary<br \/>\n    Answer: d) key in dictionary<\/p>\n<p>15. What is the output of the following code snippet?<br \/>\n    my_list = [1, 2, 3, 4, 5]<br \/>\n    print(my_list[2:4])<br \/>\n    a) [1, 2]<br \/>\n    b) [3, 4]<br \/>\n    c) [2, 3]<br \/>\n    d) [3, 4, 5]<br \/>\n    Answer: b) [3, 4]<\/p>\n<h3 id=\"2\">Part 2: Download Python quiz questions &#038; answers for free<\/h3>\n<div class=\"getstarted-container\">\n<p style=\"margin-bottom: 13px;\">Download questions &#038; answers for free<\/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\/thanks-for-downloading-questions.html?url=https:\/\/onlineexammaker.com\/questions-answers\/265-Python.zip\">Free Download <\/a><\/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?refer=download_questions\" target=\"_blank\" rel=\"noopener\">Create An Online Quiz<\/a><\/div>\n<\/div>\n<\/div>\n<\/div>\n<p>16. Which module is used for date and time manipulation in Python?<br \/>\n    a) datetime<br \/>\n    b) math<br \/>\n    c) random<br \/>\n    d) os<br \/>\n    Answer: a) datetime<\/p>\n<p>17. How do you open a file in Python?<br \/>\n    a) open(file_name, &#8220;r&#8221;)<br \/>\n    b) open(&#8220;r&#8221;, file_name)<br \/>\n    c) open(&#8220;r&#8221;, &#8220;file_name&#8221;)<br \/>\n    d) open(file_name)<br \/>\n    Answer: a) open(file_name, &#8220;r&#8221;)<\/p>\n<p>18. What is the output of the following code snippet?<br \/>\n    x = 5<br \/>\n    y = 2<br \/>\n    print(x % y)<br \/>\n    a) 2<br \/>\n    b) 3<br \/>\n    c) 0<br \/>\n    d) 2.5<br \/>\n    Answer: a) 1<\/p>\n<p>19. What is the purpose of the &#8220;pass&#8221; statement in Python?<br \/>\n    a) To end the program<br \/>\n    b) To skip a loop iteration<br \/>\n    c) To print a message<br \/>\n    d) To assign a value to a variable<br \/>\n    Answer: b) To skip a loop iteration<\/p>\n<p>20. How do you add an element to the end of a list in Python?<br \/>\n    a) list.insert(0, element)<br \/>\n    b) list.append(element)<br \/>\n    c) list.add(element)<br \/>\n    d) list.extend(element)<br \/>\n    Answer: b) list.append(element)<\/p>\n<p>21. What is the output of the following code snippet?<br \/>\n    x = 10<br \/>\n    y = 5<br \/>\n    print(x > y)<br \/>\n    a) True<br \/>\n    b) False<\/p>\n<p>    c) Error<br \/>\n    d) None<br \/>\n    Answer: a) True<\/p>\n<p>22. Which function is used to find the maximum value in a list in Python?<br \/>\n    a) min()<br \/>\n    b) max()<br \/>\n    c) sum()<br \/>\n    d) len()<br \/>\n    Answer: b) max()<\/p>\n<p>23. How do you remove an element from a list in Python?<br \/>\n    a) list.remove(element)<br \/>\n    b) list.delete(element)<br \/>\n    c) list.pop(element)<br \/>\n    d) list.clear(element)<br \/>\n    Answer: a) list.remove(element)<\/p>\n<p>24. What is the output of the following code snippet?<br \/>\n    x = True<br \/>\n    y = False<br \/>\n    print(x and y)<br \/>\n    a) True<br \/>\n    b) False<br \/>\n    c) Error<br \/>\n    d) None<br \/>\n    Answer: b) False<\/p>\n<div class=\"refer_box\">\n<p class=\"refer_box_title\">Pro Tip<\/p>\n<p class=\"refer_box_text\">Want to assess your learners online? <a href=\"https:\/\/onlineexammaker.com?refer=blog_refer\">Create an online quiz for free<\/a>!<\/p>\n<\/div>\n<p>25. Which module is used for regular expression operations in Python?<br \/>\n    a) math<br \/>\n    b) datetime<br \/>\n    c) re<br \/>\n    d) sys<br \/>\n    Answer: c) re<\/p>\n<p>26. How do you convert a string to an integer in Python?<br \/>\n    a) str()<br \/>\n    b) float()<br \/>\n    c) int()<br \/>\n    d) bool()<br \/>\n    Answer: c) int()<\/p>\n<p>27. What is the output of the following code snippet?<br \/>\n    my_set = {1, 2, 3, 4}<br \/>\n    my_set.add(5)<br \/>\n    print(my_set)<br \/>\n    a) {1, 2, 3, 4}<br \/>\n    b) {1, 2, 3, 4, 5}<br \/>\n    c) {2, 3, 4, 5}<br \/>\n    d) Error<br \/>\n    Answer: b) {1, 2, 3, 4, 5}<\/p>\n<p>28. How do you round a floating-point number to the nearest integer in Python?<br \/>\n    a) round(number)<br \/>\n    b) ceil(number)<br \/>\n    c) floor(number)<br \/>\n    d) int(number)<br \/>\n    Answer: a) round(number)<\/p>\n<p>29. What is the purpose of the &#8220;else&#8221; statement in a try-except block in Python?<br \/>\n    a) To handle an exception<br \/>\n    b) To specify the type of exception<br \/>\n    c) To execute a block of code if no exception occurs<br \/>\n    d) To terminate the program<br \/>\n    Answer: c) To execute a block of code if no exception occurs<\/p>\n<p>30. How do you convert a list to a tuple in Python?<br \/>\n    a) tuple()<br \/>\n    b) list()<br \/>\n    c) set()<br \/>\n    d) dict()<br \/>\n    Answer: a) tuple()<\/p>\n<h3 id=\"3\">Part 3: Free online quiz creator &#8211; OnlineExamMaker<\/h3>\n<p>OnlineExamMaker&#8217;s secure, powerful web-based quiz maker is an easy-to-use, intelligent online testing software tool for business, training &#038; educational to create exams &#038; quizzes with ease. With its user friendly interface and extensive range of features, OnlineExamMaker simplifies the process of creation and distributing online quizzes to engage learners, improve knowledge retention, and assess performance.<\/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\/N4DjKqmclcE\"><\/iframe>\n<\/div>\n<\/div>\n<div class=\"getstarted-container\">\n<p style=\"margin-bottom: 13px;\">Create Your Next Quiz\/Exam with OnlineExamMaker<\/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\/sign-up.html?refer=blog_btn\"> Get Started Free<\/a><\/div>\n<div class=\"p-style-b\">SAAS, free forever<\/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\/lan.html?refer=blog_btn\">On-Premise: Download<\/a><\/div>\n<div class=\"p-style-b\">100% data ownership<\/div>\n<\/div>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Python is a versatile and popular high-level programming language known for its simplicity, readability, and extensive range of libraries and frameworks. It was created by Guido van Rossum and released in 1991, designed with a focus on code readability and ease of use. Python offers a clean and intuitive syntax, making it beginner-friendly and widely [&hellip;]<\/p>\n","protected":false},"author":7,"featured_media":12820,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[353],"tags":[],"class_list":["post-12819","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>30 Python 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\/30-python-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=\"30 Python Quiz Questions and Answers - OnlineExamMaker Blog\" \/>\n<meta property=\"og:description\" content=\"Python is a versatile and popular high-level programming language known for its simplicity, readability, and extensive range of libraries and frameworks. It was created by Guido van Rossum and released in 1991, designed with a focus on code readability and ease of use. Python offers a clean and intuitive syntax, making it beginner-friendly and widely [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/onlineexammaker.com\/kb\/30-python-quiz-questions-and-answers\/\" \/>\n<meta property=\"og:site_name\" content=\"OnlineExamMaker Blog\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-27T03:51:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-09-08T02:30:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2023\/07\/Python-quiz.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"850\" \/>\n\t<meta property=\"og:image:height\" content=\"425\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Willson Black\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Willson Black\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/onlineexammaker.com\/kb\/30-python-quiz-questions-and-answers\/\",\"url\":\"https:\/\/onlineexammaker.com\/kb\/30-python-quiz-questions-and-answers\/\",\"name\":\"30 Python Quiz Questions and Answers - OnlineExamMaker Blog\",\"isPartOf\":{\"@id\":\"https:\/\/onlineexammaker.com\/kb\/#website\"},\"datePublished\":\"2023-07-27T03:51:44+00:00\",\"dateModified\":\"2023-09-08T02:30:14+00:00\",\"author\":{\"@id\":\"https:\/\/onlineexammaker.com\/kb\/#\/schema\/person\/395b2b5bfc990b8d494fc7b498db795b\"},\"breadcrumb\":{\"@id\":\"https:\/\/onlineexammaker.com\/kb\/30-python-quiz-questions-and-answers\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/onlineexammaker.com\/kb\/30-python-quiz-questions-and-answers\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/onlineexammaker.com\/kb\/30-python-quiz-questions-and-answers\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/onlineexammaker.com\/kb\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"30 Python 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\/395b2b5bfc990b8d494fc7b498db795b\",\"name\":\"Willson Black\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/onlineexammaker.com\/kb\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/cdcb7df856a2cdfc9affd6f71823f077?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/cdcb7df856a2cdfc9affd6f71823f077?s=96&r=g\",\"caption\":\"Willson Black\"},\"url\":\"https:\/\/onlineexammaker.com\/kb\/author\/willblog\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"30 Python 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\/30-python-quiz-questions-and-answers\/","og_locale":"en_US","og_type":"article","og_title":"30 Python Quiz Questions and Answers - OnlineExamMaker Blog","og_description":"Python is a versatile and popular high-level programming language known for its simplicity, readability, and extensive range of libraries and frameworks. It was created by Guido van Rossum and released in 1991, designed with a focus on code readability and ease of use. Python offers a clean and intuitive syntax, making it beginner-friendly and widely [&hellip;]","og_url":"https:\/\/onlineexammaker.com\/kb\/30-python-quiz-questions-and-answers\/","og_site_name":"OnlineExamMaker Blog","article_published_time":"2023-07-27T03:51:44+00:00","article_modified_time":"2023-09-08T02:30:14+00:00","og_image":[{"width":850,"height":425,"url":"https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2023\/07\/Python-quiz.webp","type":"image\/webp"}],"author":"Willson Black","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Willson Black","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/onlineexammaker.com\/kb\/30-python-quiz-questions-and-answers\/","url":"https:\/\/onlineexammaker.com\/kb\/30-python-quiz-questions-and-answers\/","name":"30 Python Quiz Questions and Answers - OnlineExamMaker Blog","isPartOf":{"@id":"https:\/\/onlineexammaker.com\/kb\/#website"},"datePublished":"2023-07-27T03:51:44+00:00","dateModified":"2023-09-08T02:30:14+00:00","author":{"@id":"https:\/\/onlineexammaker.com\/kb\/#\/schema\/person\/395b2b5bfc990b8d494fc7b498db795b"},"breadcrumb":{"@id":"https:\/\/onlineexammaker.com\/kb\/30-python-quiz-questions-and-answers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/onlineexammaker.com\/kb\/30-python-quiz-questions-and-answers\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/onlineexammaker.com\/kb\/30-python-quiz-questions-and-answers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/onlineexammaker.com\/kb\/"},{"@type":"ListItem","position":2,"name":"30 Python 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\/395b2b5bfc990b8d494fc7b498db795b","name":"Willson Black","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/onlineexammaker.com\/kb\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/cdcb7df856a2cdfc9affd6f71823f077?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/cdcb7df856a2cdfc9affd6f71823f077?s=96&r=g","caption":"Willson Black"},"url":"https:\/\/onlineexammaker.com\/kb\/author\/willblog\/"}]}},"_links":{"self":[{"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/posts\/12819"}],"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\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/comments?post=12819"}],"version-history":[{"count":3,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/posts\/12819\/revisions"}],"predecessor-version":[{"id":18132,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/posts\/12819\/revisions\/18132"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/media\/12820"}],"wp:attachment":[{"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/media?parent=12819"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/categories?post=12819"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/tags?post=12819"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}