{"id":17298,"date":"2023-08-25T01:05:09","date_gmt":"2023-08-25T01:05:09","guid":{"rendered":"https:\/\/onlineexammaker.com\/kb\/?p=17298"},"modified":"2023-08-25T01:05:09","modified_gmt":"2023-08-25T01:05:09","slug":"30-fortran-quiz-questions-and-answers","status":"publish","type":"post","link":"https:\/\/onlineexammaker.com\/kb\/30-fortran-quiz-questions-and-answers\/","title":{"rendered":"30 Fortran Quiz Questions and Answers"},"content":{"rendered":"<p>Fortran (short for Formula Translation) is one of the oldest and most widely used programming languages for scientific, engineering, and high-performance computing applications. Developed in the 1950s by IBM, Fortran is designed to perform complex mathematical and scientific computations efficiently. Over the years, it has evolved through several versions, with Fortran 95, Fortran 2003, Fortran 2008, and Fortran 2018 being some of the major standards. Here is an overview of Fortran and its key features:<\/p>\n<p>Numerical Computation: Fortran is primarily used for numerical computation and scientific calculations. It provides extensive support for handling mathematical operations, making it suitable for scientific and engineering applications.<\/p>\n<p>Array-Centric Language: Fortran is known for its array-centric programming model, allowing developers to work with multi-dimensional arrays efficiently. This array-oriented approach simplifies complex computations.<\/p>\n<p>Performance-Oriented: Fortran is designed with a focus on performance, making it a popular choice for computationally intensive tasks. It supports compiler optimizations and efficient memory usage.<\/p>\n<p>Fixed-Form and Free-Form Syntax: Fortran historically used fixed-form syntax, where specific columns were reserved for certain constructs. Modern Fortran (Fortran 90 and above) introduced free-form syntax, allowing more flexibility in code layout.<\/p>\n<h3>Article overview<\/h3>\n<ul class=\"article_list\">\n<li><a href=\"#1\">Part 1: 30 Fortran quiz questions &#038; answers<\/a><\/li>\n<li><a href=\"#2\">Part 2: Download Fortran questions &#038; answers for free<\/a><\/l1>\n<li><a href=\"#3\">Part 3: Free online quiz software &#8211; OnlineExamMaker<\/a><\/l1>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2023\/08\/Fortran-quiz.webp\" alt=\"\" width=\"1024\" height=\"586\" class=\"alignnone size-full wp-image-17299\" srcset=\"https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2023\/08\/Fortran-quiz.webp 1024w, https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2023\/08\/Fortran-quiz-300x172.webp 300w, https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2023\/08\/Fortran-quiz-768x440.webp 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/p>\n<h3 id=\"1\">Part 1: 30 Fortran quiz questions &#038; answers<\/h3>\n<p>1. What does &#8220;Fortran&#8221; stand for?<br \/>\n   a) Formula Translation<br \/>\n   b) Forward Translation<br \/>\n   c) Functional Transposition<br \/>\n   d) Fortified Transition<br \/>\n   Answer: a) Formula Translation<\/p>\n<p>2. Fortran is primarily used for:<br \/>\n   a) Web development<br \/>\n   b) Scientific and engineering computations<br \/>\n   c) Artificial intelligence and machine learning<br \/>\n   d) Mobile app development<br \/>\n   Answer: b) Scientific and engineering computations<\/p>\n<p>3. Which programming paradigm does Fortran follow?<br \/>\n   a) Object-Oriented Programming<br \/>\n   b) Functional Programming<br \/>\n   c) Procedural Programming<br \/>\n   d) Event-Driven Programming<br \/>\n   Answer: c) Procedural Programming<\/p>\n<p>4. Which version of Fortran introduced free-form syntax, allowing more flexibility in code layout?<br \/>\n   a) Fortran 66<br \/>\n   b) Fortran 77<br \/>\n   c) Fortran 90<br \/>\n   d) Fortran 95<br \/>\n   Answer: c) Fortran 90<\/p>\n<p>5. Fortran is a _____ typed language.<br \/>\n   a) Strongly<br \/>\n   b) Weakly<br \/>\n   c) Dynamically<br \/>\n   d) Statically<br \/>\n   Answer: a) Strongly<\/p>\n<p>6. Which of the following is a valid Fortran array declaration?<br \/>\n   a) array[] = {1, 2, 3}<br \/>\n   b) int array(3)<br \/>\n   c) real :: array(3)<br \/>\n   d) array = [1, 2, 3]<br \/>\n   Answer: c) real :: array(3)<\/p>\n<p>7. Fortran supports complex numbers natively using:<br \/>\n   a) imaginary keyword<br \/>\n   b) complex keyword<br \/>\n   c) complex type declaration<br \/>\n   d) imaginary type declaration<br \/>\n   Answer: c) complex type declaration<\/p>\n<p>8. Fortran 90 introduced a new array indexing convention. What is the default lower bound of arrays in Fortran 90?<br \/>\n   a) 0<br \/>\n   b) -1<br \/>\n   c) 1<br \/>\n   d) It depends on the programmer&#8217;s choice<br \/>\n   Answer: c) 1<\/p>\n<p>9. Which Fortran statement is used to end a do-loop?<br \/>\n   a) loop<br \/>\n   b) next<br \/>\n   c) continue<br \/>\n   d) end do<br \/>\n   Answer: d) end do<\/p>\n<p>10. Fortran 2003 introduced the concept of &#8220;allocatable&#8221; arrays. What does this mean?<br \/>\n    a) Arrays that have a fixed size and cannot be changed.<br \/>\n    b) Arrays that can be resized during runtime.<br \/>\n    c) Arrays that cannot be used as function arguments.<br \/>\n    d) Arrays that are not allowed in Fortran 2003.<br \/>\n    Answer: b) Arrays that can be resized during runtime.<\/p>\n<p>11. In Fortran, how are comments denoted?<br \/>\n    a) \/\/<br \/>\n    b) &#8212;<br \/>\n    c) \/*<br \/>\n    d) !<br \/>\n    Answer: d) !<\/p>\n<p>12. Which Fortran function is used to find the maximum value in an array?<br \/>\n    a) maxval()<br \/>\n    b) max()<br \/>\n    c) maximum()<br \/>\n    d) largest()<br \/>\n    Answer: a) maxval()<\/p>\n<p>13. Fortran uses the &#8220;WRITE&#8221; statement for:<br \/>\n    a) Reading data from a file<br \/>\n    b) Writing data to a file<br \/>\n    c) Declaring variables<br \/>\n    d) Looping<br \/>\n    Answer: b) Writing data to a file<\/p>\n<p>14. How is dynamic memory allocated in Fortran?<br \/>\n    a) Using the &#8220;new&#8221; keyword<br \/>\n    b) Using the &#8220;malloc&#8221; function<br \/>\n    c) Using the &#8220;allocate&#8221; statement<br \/>\n    d) Fortran does not support dynamic memory allocation<br \/>\n    Answer: c) Using the &#8220;allocate&#8221; statement<\/p>\n<p>15. In Fortran, the &#8220;IMPLICIT NONE&#8221; statement is used to:<br \/>\n    a) Declare variables implicitly<br \/>\n    b) Suppress warning messages<br \/>\n    c) Disable automatic type conversion<br \/>\n    d) Force explicit declaration of variables<br \/>\n    Answer: d) Force explicit declaration of variables<\/p>\n<h3 id=\"2\">Part 2: Download Fortran 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\/764-Fortran.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. What is the Fortran statement used to read data from standard input (keyboard)?<br \/>\n    a) read()<br \/>\n    b) input()<br \/>\n    c) scanf()<br \/>\n    d) input statement is not supported in Fortran<br \/>\n    Answer: a) read()<\/p>\n<p>17. Which Fortran function is used to calculate the square root of a number?<br \/>\n    a) sqrt()<br \/>\n    b) square()<br \/>\n    c) squareRoot()<br \/>\n    d) sqr()<br \/>\n    Answer: a) sqrt()<\/p>\n<p>18. How do you define a one-dimensional array in Fortran?<br \/>\n    a) int array(10)<br \/>\n    b) array[10]<br \/>\n    c) array(10)<br \/>\n    d) array[1:10]<br \/>\n    Answer: c) array(10)<\/p>\n<p>19. In Fortran, what is the default access mode for files opened using the &#8220;OPEN&#8221; statement?<br \/>\n    a) READ<br \/>\n    b) WRITE<br \/>\n    c) READWRITE<br \/>\n    d) APPEND<br \/>\n    Answer: a) READ<\/p>\n<p>20. How can you concatenate two strings in Fortran?<br \/>\n    a) str1 + str2<br \/>\n    b) str1 . str2<br \/>\n    c) str1 \/\/ str2<br \/>\n    d) concat(str1, str2)<br \/>\n    Answer: c) str1 \/\/ str2<\/p>\n<p>21. Which of the following is not a Fortran intrinsic data type?<br \/>\n    a) REAL<br \/>\n    b)<\/p>\n<p> INTEGER<br \/>\n    c) CHARACTER<br \/>\n    d) STRING<br \/>\n    Answer: d) STRING<\/p>\n<p>22. Fortran supports which of the following types of loops?<br \/>\n    a) for, while, and do-while<br \/>\n    b) for and while<br \/>\n    c) do and while<br \/>\n    d) do and do-while<br \/>\n    Answer: c) do and while<\/p>\n<p>23. Which Fortran keyword is used to define a function?<br \/>\n    a) def<br \/>\n    b) func<br \/>\n    c) subroutine<br \/>\n    d) function<br \/>\n    Answer: d) function<\/p>\n<p>24. Which version of Fortran introduced support for recursive procedures?<br \/>\n    a) Fortran 77<br \/>\n    b) Fortran 90<br \/>\n    c) Fortran 2003<br \/>\n    d) Fortran 2018<br \/>\n    Answer: b) Fortran 90<\/p>\n<p>25. Fortran 90 introduced a new way to perform string manipulation using:<br \/>\n    a) String functions<br \/>\n    b) Character arrays<br \/>\n    c) Concatenation operators<br \/>\n    d) String pointers<br \/>\n    Answer: a) String functions<\/p>\n<p>26. Fortran is known for its performance in:<br \/>\n    a) Web development<br \/>\n    b) Mobile app development<br \/>\n    c) Scientific and engineering computations<br \/>\n    d) Artificial intelligence and machine learning<br \/>\n    Answer: c) Scientific and engineering computations<\/p>\n<p>27. Which Fortran statement is used to exit a loop prematurely?<br \/>\n    a) stop<br \/>\n    b) exit<br \/>\n    c) break<br \/>\n    d) end do<br \/>\n    Answer: b) exit<\/p>\n<p>28. What is the purpose of the &#8220;SELECT CASE&#8221; statement in Fortran?<br \/>\n    a) To declare variables and constants<br \/>\n    b) To define a function<br \/>\n    c) To perform multiple conditional tests<br \/>\n    d) To allocate memory for an array<br \/>\n    Answer: c) To perform multiple conditional tests<\/p>\n<p>29. How do you denote a Fortran array with a flexible size (assumed shape)?<br \/>\n    a) array[]<br \/>\n    b) array(:)<br \/>\n    c) array(*)<br \/>\n    d) array[flexible]<br \/>\n    Answer: b) array(:)<\/p>\n<p>30. Fortran is widely used in:<br \/>\n    a) Web development<br \/>\n    b) Game development<br \/>\n    c) Scientific and engineering applications<br \/>\n    d) Social media and entertainment<br \/>\n    Answer: c) Scientific and engineering applications<\/p>\n<h3 id=\"3\">Part 3: Best online quiz making platform &#8211; OnlineExamMaker<\/h3>\n<p>OnlineExamMaker makes it simple to design and launch interactive quizzes, calculators, assessments, and surveys. With the Question Editor, you can create multiple-choice, open-ended, matching, sequencing and many other types of questions for your tests, exams and inventories. You are allowed to enhance quizzes with multimedia elements like images, audio, and video to make them more interactive and visually appealing.<\/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\/bv7AAAyFOo4\"><\/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>Fortran (short for Formula Translation) is one of the oldest and most widely used programming languages for scientific, engineering, and high-performance computing applications. Developed in the 1950s by IBM, Fortran is designed to perform complex mathematical and scientific computations efficiently. Over the years, it has evolved through several versions, with Fortran 95, Fortran 2003, Fortran [&hellip;]<\/p>\n","protected":false},"author":7,"featured_media":17299,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[353],"tags":[],"class_list":["post-17298","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 Fortran 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-fortran-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 Fortran Quiz Questions and Answers - OnlineExamMaker Blog\" \/>\n<meta property=\"og:description\" content=\"Fortran (short for Formula Translation) is one of the oldest and most widely used programming languages for scientific, engineering, and high-performance computing applications. Developed in the 1950s by IBM, Fortran is designed to perform complex mathematical and scientific computations efficiently. Over the years, it has evolved through several versions, with Fortran 95, Fortran 2003, Fortran [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/onlineexammaker.com\/kb\/30-fortran-quiz-questions-and-answers\/\" \/>\n<meta property=\"og:site_name\" content=\"OnlineExamMaker Blog\" \/>\n<meta property=\"article:published_time\" content=\"2023-08-25T01:05:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2023\/08\/Fortran-quiz.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"586\" \/>\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-fortran-quiz-questions-and-answers\/\",\"url\":\"https:\/\/onlineexammaker.com\/kb\/30-fortran-quiz-questions-and-answers\/\",\"name\":\"30 Fortran Quiz Questions and Answers - OnlineExamMaker Blog\",\"isPartOf\":{\"@id\":\"https:\/\/onlineexammaker.com\/kb\/#website\"},\"datePublished\":\"2023-08-25T01:05:09+00:00\",\"dateModified\":\"2023-08-25T01:05:09+00:00\",\"author\":{\"@id\":\"https:\/\/onlineexammaker.com\/kb\/#\/schema\/person\/395b2b5bfc990b8d494fc7b498db795b\"},\"breadcrumb\":{\"@id\":\"https:\/\/onlineexammaker.com\/kb\/30-fortran-quiz-questions-and-answers\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/onlineexammaker.com\/kb\/30-fortran-quiz-questions-and-answers\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/onlineexammaker.com\/kb\/30-fortran-quiz-questions-and-answers\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/onlineexammaker.com\/kb\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"30 Fortran 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 Fortran 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-fortran-quiz-questions-and-answers\/","og_locale":"en_US","og_type":"article","og_title":"30 Fortran Quiz Questions and Answers - OnlineExamMaker Blog","og_description":"Fortran (short for Formula Translation) is one of the oldest and most widely used programming languages for scientific, engineering, and high-performance computing applications. Developed in the 1950s by IBM, Fortran is designed to perform complex mathematical and scientific computations efficiently. Over the years, it has evolved through several versions, with Fortran 95, Fortran 2003, Fortran [&hellip;]","og_url":"https:\/\/onlineexammaker.com\/kb\/30-fortran-quiz-questions-and-answers\/","og_site_name":"OnlineExamMaker Blog","article_published_time":"2023-08-25T01:05:09+00:00","og_image":[{"width":1024,"height":586,"url":"https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2023\/08\/Fortran-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-fortran-quiz-questions-and-answers\/","url":"https:\/\/onlineexammaker.com\/kb\/30-fortran-quiz-questions-and-answers\/","name":"30 Fortran Quiz Questions and Answers - OnlineExamMaker Blog","isPartOf":{"@id":"https:\/\/onlineexammaker.com\/kb\/#website"},"datePublished":"2023-08-25T01:05:09+00:00","dateModified":"2023-08-25T01:05:09+00:00","author":{"@id":"https:\/\/onlineexammaker.com\/kb\/#\/schema\/person\/395b2b5bfc990b8d494fc7b498db795b"},"breadcrumb":{"@id":"https:\/\/onlineexammaker.com\/kb\/30-fortran-quiz-questions-and-answers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/onlineexammaker.com\/kb\/30-fortran-quiz-questions-and-answers\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/onlineexammaker.com\/kb\/30-fortran-quiz-questions-and-answers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/onlineexammaker.com\/kb\/"},{"@type":"ListItem","position":2,"name":"30 Fortran 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\/17298"}],"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=17298"}],"version-history":[{"count":2,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/posts\/17298\/revisions"}],"predecessor-version":[{"id":17304,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/posts\/17298\/revisions\/17304"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/media\/17299"}],"wp:attachment":[{"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/media?parent=17298"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/categories?post=17298"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/tags?post=17298"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}