{"id":17336,"date":"2023-08-25T01:22:25","date_gmt":"2023-08-25T01:22:25","guid":{"rendered":"https:\/\/onlineexammaker.com\/kb\/?p=17336"},"modified":"2024-04-02T06:55:01","modified_gmt":"2024-04-02T06:55:01","slug":"30-lua-quiz-questions-and-answers","status":"publish","type":"post","link":"https:\/\/onlineexammaker.com\/kb\/30-lua-quiz-questions-and-answers\/","title":{"rendered":"30 Lua Quiz Questions and Answers"},"content":{"rendered":"<p>Lua is a lightweight, fast, and embeddable scripting language designed to be flexible, portable, and easy to use. It was developed in the early 1990s by a team of engineers at the Pontifical Catholic University of Rio de Janeiro in Brazil. The name &#8220;Lua&#8221; means &#8220;moon&#8221; in Portuguese and represents the project&#8217;s ambition to be a small, reflective language.<\/p>\n<p>Here is an overview of Lua and its key characteristics:<\/p>\n<p>Scripting Language: Lua is primarily used as a scripting language, meaning it is embedded within other applications to extend their functionality or automate tasks. It is not designed to be a standalone language for large-scale applications.<\/p>\n<p>Lightweight and Portable: Lua is written in ANSI C, making it lightweight and portable across various platforms, including embedded systems and mobile devices.<\/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>Embeddable: Lua is designed to be easily embedded into other programs, and it provides a simple API for integration with C, C++, and other languages. Many applications and games use Lua as a scripting engine to enable users to customize behavior without modifying the core codebase.<\/p>\n<p>Dynamic Typing: Lua is dynamically typed, meaning variable types are determined at runtime. This allows for flexibility in programming but also requires careful handling of data types.<\/p>\n<h3>Table of content<\/h3>\n<ul class=\"article_list\">\n<li><a href=\"#1\">Part 1: 30 Lua programming quiz questions &#038; answers<\/a><\/li>\n<li><a href=\"#2\">Part 2: Download Lua programming questions &#038; answers for free<\/a><\/l1>\n<li><a href=\"#3\">Part 3: Free online quiz platform &#8211; OnlineExamMaker<\/a><\/l1>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2023\/08\/Lua.webp\" alt=\"\" width=\"894\" height=\"462\" class=\"alignnone size-full wp-image-17337\" srcset=\"https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2023\/08\/Lua.webp 894w, https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2023\/08\/Lua-300x155.webp 300w, https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2023\/08\/Lua-768x397.webp 768w\" sizes=\"(max-width: 894px) 100vw, 894px\" \/><\/p>\n<h3 id=\"1\">Part 1: 30 Lua programming quiz questions &#038; answers<\/h3>\n<p>1. What type of language is Lua primarily used as?<br \/>\n   a) Compiled language<br \/>\n   b) Object-oriented language<br \/>\n   c) Scripting language<br \/>\n   d) Low-level language<br \/>\n   Answer: c) Scripting language<\/p>\n<p>2. What does the name &#8220;Lua&#8221; mean in Portuguese?<br \/>\n   a) Sun<br \/>\n   b) Moon<br \/>\n   c) Star<br \/>\n   d) Earth<br \/>\n   Answer: b) Moon<\/p>\n<p>3. Lua is designed to be lightweight and portable across various platforms because it is written in:<br \/>\n   a) C++<br \/>\n   b) Java<br \/>\n   c) LuaScript<br \/>\n   d) ANSI C<br \/>\n   Answer: d) ANSI C<\/p>\n<p>4. What is the primary data structure used in Lua to represent arrays, dictionaries, and objects?<br \/>\n   a) Arrays<br \/>\n   b) Lists<br \/>\n   c) Tuples<br \/>\n   d) Tables<br \/>\n   Answer: d) Tables<\/p>\n<p>5. Which of the following is NOT a key characteristic of Lua?<br \/>\n   a) Dynamic typing<br \/>\n   b) Lexical scoping<br \/>\n   c) Garbage collection<br \/>\n   d) Static typing<br \/>\n   Answer: d) Static typing<\/p>\n<p>6. Lua&#8217;s syntax is simple and easy to read, influenced by which programming languages?<br \/>\n   a) Python and Java<br \/>\n   b) JavaScript and C++<br \/>\n   c) Ruby and Perl<br \/>\n   d) JavaScript and Python<br \/>\n   Answer: d) JavaScript and Python<\/p>\n<p>7. What is the primary purpose of embedding Lua into other applications?<br \/>\n   a) To create standalone programs<br \/>\n   b) To write large-scale applications<br \/>\n   c) To extend functionality or automate tasks<br \/>\n   d) To develop mobile apps<br \/>\n   Answer: c) To extend functionality or automate tasks<\/p>\n<p>8. Lua uses weak typing, which means:<br \/>\n   a) Variables must be explicitly declared with a type<br \/>\n   b) Type conversions are not allowed<br \/>\n   c) Type conversions are performed implicitly when necessary<br \/>\n   d) Variables cannot be changed after initialization<br \/>\n   Answer: c) Type conversions are performed implicitly when necessary<\/p>\n<p>9. What is the main mechanism used in Lua for memory management?<br \/>\n   a) Manual memory management<br \/>\n   b) Automatic garbage collection<br \/>\n   c) Reference counting<br \/>\n   d) Stack allocation<br \/>\n   Answer: b) Automatic garbage collection<\/p>\n<p>10. Which keyword is used to define a function in Lua?<br \/>\n    a) func<br \/>\n    b) def<br \/>\n    c) function<br \/>\n    d) fn<br \/>\n    Answer: c) function<\/p>\n<p>11. In Lua, what does the &#8220;%&#8221; operator represent?<br \/>\n    a) Addition<br \/>\n    b) Subtraction<br \/>\n    c) Multiplication<br \/>\n    d) Modulus (remainder)<br \/>\n    Answer: d) Modulus (remainder)<\/p>\n<p>12. What is the output of the following code snippet?<br \/>\n    &#8220;`lua<br \/>\n    local x = 10<br \/>\n    local y = 5<br \/>\n    local result = x \/ y<br \/>\n    print(result)<br \/>\n    &#8220;`<br \/>\n    a) 2<br \/>\n    b) 2.0<br \/>\n    c) 2.5<br \/>\n    d) &#8220;2.0&#8221;<br \/>\n    Answer: c) 2.5<\/p>\n<p>13. In Lua, what is the correct syntax for a single-line comment?<br \/>\n    a) \/\/ This is a comment<br \/>\n    b) \/* This is a comment *\/<br \/>\n    c) # This is a comment<br \/>\n    d) &#8212; This is a comment<br \/>\n    Answer: d) &#8212; This is a comment<\/p>\n<p>14. How do you declare a variable as a constant in Lua?<br \/>\n    a) constant x = 5<br \/>\n    b) const x = 5<br \/>\n    c) readonly x = 5<br \/>\n    d) local const x = 5<br \/>\n    Answer: d) local const x = 5<\/p>\n<p>15. What is the correct way to concatenate two strings in Lua?<br \/>\n    a) str1 . str2<br \/>\n    b) str1 + str2<br \/>\n    c) str1 .. str2<br \/>\n    d) str1 &#038; str2<br \/>\n    Answer: c) str1 .. str2<\/p>\n<h3 id=\"2\">Part 2: Download Lua questions &#038; answers for free<\/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;\">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\/770-Lua.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. In Lua, what is the keyword used to break out of a loop prematurely?<br \/>\n    a) stop<br \/>\n    b) exit<br \/>\n    c) break<br \/>\n    d) end<br \/>\n    Answer: c) break<\/p>\n<p>17. Lua uses lexical scoping, which means that a function can access variables from its:<br \/>\n    a) Parent scope<br \/>\n    b) Child scope<br \/>\n    c) Global scope<br \/>\n    d) Sibling scope<br \/>\n    Answer: a) Parent scope<\/p>\n<p>18. What is the correct syntax to create a multiline string in Lua?<br \/>\n    a) &#8220;This is a multiline string&#8221;<br \/>\n    b) &#8216;This is a multiline string&#8217;<br \/>\n    c) [[This is a multiline string]]<br \/>\n    d) `This is a multiline string`<br \/>\n    Answer: c) [[This is a multiline string]]<\/p>\n<p>19. Which standard library function is used to iterate over key-value pairs in a Lua table?<br \/>\n    a) pairs()<br \/>\n    b) ipairs()<br \/>\n    c) each()<br \/>\n    d) map()<br \/>\n    Answer: a) pairs()<\/p>\n<p>20. What is the keyword used to define a local variable in Lua?<br \/>\n    a) var<br \/>\n    b) let<br \/>\n    c) const<br \/>\n    d) local<br \/>\n    Answer: d) local<\/p>\n<p>21. In Lua, what is the purpose of the &#8220;require&#8221; function?<br \/>\n    a) To load external libraries and modules<br \/>\n    b) To define a new function<br \/>\n    c) To include another Lua file<br \/>\n    d) To execute a shell command<br \/>\n    Answer: a) To load external libraries and modules<\/p>\n<p>22. How do you define a function with multiple return values in Lua?<br \/>\n    a) function add(a, b) return a + b end<br \/>\n    b) function add(a, b) return a, b end<br \/>\n    c) function add(a, b) return (a, b) end<br \/>\n    d) function add(a, b) a + b end<br \/>\n    Answer: b) function add(a, b) return a, b end<\/p>\n<p>23. What is the output of the following code snippet?<br \/>\n    &#8220;`lua<br \/>\n    local x = 10<br \/>\n    if x > 5 then<br \/>\n        print(&#8220;x is greater than 5&#8221;)<br \/>\n    else<br \/>\n        print(&#8220;x is less than or equal to 5&#8221;)<br \/>\n    end<br \/>\n    &#8220;`<br \/>\n    a) x is greater than 5<br \/>\n    b) x is less than or equal to 5<br \/>\n    c) The code will not compile due to an error.<br \/>\n    d) No output will be printed.<br \/>\n    Answer: a) x is greater than 5<\/p>\n<p>24. What is the purpose of the &#8220;and&#8221; operator in Lua?<br \/>\n    a) Logical AND operator<br \/>\n    b) Bitwise AND operator<br \/>\n    c) String concatenation operator<br \/>\n    d) Arithmetic AND operator<br \/>\n    Answer: a) Logical AND operator<\/p>\n<p>25. In Lua, how do you access the length of a string or an array?<br \/>\n    a) length(str)<br \/>\n    b) count(str)<br \/>\n    c) size(str)<br \/>\n    d) #str<br \/>\n    Answer: d) #str<\/p>\n<div class=\"refer_box\">\n<p class=\"refer_box_title\">Just so you know<\/p>\n<p class=\"refer_box_text\">With <a href=\"https:\/\/onlineexammaker.com?refer=blog_refer\">OnlineExamMaker quiz software<\/a>, anyone can create &#038; share professional online assessments easily.<\/p>\n<\/div>\n<p>26. What is the output of the following code snippet?<br \/>\n    &#8220;`lua<br \/>\n    local fruits = {&#8220;apple&#8221;, &#8220;banana&#8221;, &#8220;orange&#8221;}<br \/>\n    print(fruits[2])<br \/>\n    &#8220;`<br \/>\n    a) apple<br \/>\n    b) banana<br \/>\n    c) orange<br \/>\n    d) The code will not compile due to an error.<br \/>\n    Answer: b) banana<\/p>\n<p>27. Which of the following is NOT a valid loop construct in Lua?<br \/>\n    a) for loop<br \/>\n    b) while loop<br \/>\n    c) do-while loop<br \/>\n    d) repeat-until loop<br \/>\n    Answer: c) do-while loop<\/p>\n<p>28. In Lua, how do you define a coroutine?<br \/>\n    a) define coroutine my_coroutine<br \/>\n    b) coroutine my_coroutine = new coroutine()<br \/>\n    c) local my_coroutine = coroutine.create(function() &#8230; end)<br \/>\n    d) my_coroutine = start coroutine function() &#8230; end<br \/>\n    Answer: c) local my_coroutine = coroutine.create(function() &#8230; end)<\/p>\n<p>29. What is the output of the following code snippet?<br \/>\n    &#8220;`lua<br \/>\n    local x = 5<br \/>\n    while x > 0 do<br \/>\n        print(x)<br \/>\n        x = x &#8211; 1<br \/>\n    end<br \/>\n    &#8220;`<br \/>\n    a) 5, 4, 3, 2, 1<br \/>\n    b) 1, 2, 3, 4, 5<br \/>\n    c) 5<br \/>\n    d) The code will not compile due to an error.<br \/>\n    Answer: a) 5, 4, 3, 2, 1<\/p>\n<p>30. What is the purpose of the &#8220;nil&#8221; value in Lua?<br \/>\n    a) It represents an empty string.<br \/>\n    b) It represents a null value.<br \/>\n    c) It is used to terminate a loop.<br \/>\n    d) It is used as a placeholder for future assignment.<br \/>\n    Answer: b) It represents a null value.<\/p>\n<h3 id=\"3\">Part 3: Best online quiz making platform &#8211; OnlineExamMaker<\/h3>\n<p>With OnlineExamMaker quiz maker, teachers can easily create, customize, and distribute quizzes with just a few clicks. The intuitive interface provides a range of question types, including multiple-choice, true or false, fill in the blank, and open-ended questions, enabling users to make professional assessments that suit their specific needs.<\/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>Lua is a lightweight, fast, and embeddable scripting language designed to be flexible, portable, and easy to use. It was developed in the early 1990s by a team of engineers at the Pontifical Catholic University of Rio de Janeiro in Brazil. The name &#8220;Lua&#8221; means &#8220;moon&#8221; in Portuguese and represents the project&#8217;s ambition to be [&hellip;]<\/p>\n","protected":false},"author":7,"featured_media":17337,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[353],"tags":[],"class_list":["post-17336","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 Lua 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-lua-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 Lua Quiz Questions and Answers - OnlineExamMaker Blog\" \/>\n<meta property=\"og:description\" content=\"Lua is a lightweight, fast, and embeddable scripting language designed to be flexible, portable, and easy to use. It was developed in the early 1990s by a team of engineers at the Pontifical Catholic University of Rio de Janeiro in Brazil. The name &#8220;Lua&#8221; means &#8220;moon&#8221; in Portuguese and represents the project&#8217;s ambition to be [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/onlineexammaker.com\/kb\/30-lua-quiz-questions-and-answers\/\" \/>\n<meta property=\"og:site_name\" content=\"OnlineExamMaker Blog\" \/>\n<meta property=\"article:published_time\" content=\"2023-08-25T01:22:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-02T06:55:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2023\/08\/Lua.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"894\" \/>\n\t<meta property=\"og:image:height\" content=\"462\" \/>\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=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/onlineexammaker.com\/kb\/30-lua-quiz-questions-and-answers\/\",\"url\":\"https:\/\/onlineexammaker.com\/kb\/30-lua-quiz-questions-and-answers\/\",\"name\":\"30 Lua Quiz Questions and Answers - OnlineExamMaker Blog\",\"isPartOf\":{\"@id\":\"https:\/\/onlineexammaker.com\/kb\/#website\"},\"datePublished\":\"2023-08-25T01:22:25+00:00\",\"dateModified\":\"2024-04-02T06:55:01+00:00\",\"author\":{\"@id\":\"https:\/\/onlineexammaker.com\/kb\/#\/schema\/person\/395b2b5bfc990b8d494fc7b498db795b\"},\"breadcrumb\":{\"@id\":\"https:\/\/onlineexammaker.com\/kb\/30-lua-quiz-questions-and-answers\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/onlineexammaker.com\/kb\/30-lua-quiz-questions-and-answers\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/onlineexammaker.com\/kb\/30-lua-quiz-questions-and-answers\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/onlineexammaker.com\/kb\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"30 Lua 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 Lua 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-lua-quiz-questions-and-answers\/","og_locale":"en_US","og_type":"article","og_title":"30 Lua Quiz Questions and Answers - OnlineExamMaker Blog","og_description":"Lua is a lightweight, fast, and embeddable scripting language designed to be flexible, portable, and easy to use. It was developed in the early 1990s by a team of engineers at the Pontifical Catholic University of Rio de Janeiro in Brazil. The name &#8220;Lua&#8221; means &#8220;moon&#8221; in Portuguese and represents the project&#8217;s ambition to be [&hellip;]","og_url":"https:\/\/onlineexammaker.com\/kb\/30-lua-quiz-questions-and-answers\/","og_site_name":"OnlineExamMaker Blog","article_published_time":"2023-08-25T01:22:25+00:00","article_modified_time":"2024-04-02T06:55:01+00:00","og_image":[{"width":894,"height":462,"url":"https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2023\/08\/Lua.webp","type":"image\/webp"}],"author":"Willson Black","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Willson Black","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/onlineexammaker.com\/kb\/30-lua-quiz-questions-and-answers\/","url":"https:\/\/onlineexammaker.com\/kb\/30-lua-quiz-questions-and-answers\/","name":"30 Lua Quiz Questions and Answers - OnlineExamMaker Blog","isPartOf":{"@id":"https:\/\/onlineexammaker.com\/kb\/#website"},"datePublished":"2023-08-25T01:22:25+00:00","dateModified":"2024-04-02T06:55:01+00:00","author":{"@id":"https:\/\/onlineexammaker.com\/kb\/#\/schema\/person\/395b2b5bfc990b8d494fc7b498db795b"},"breadcrumb":{"@id":"https:\/\/onlineexammaker.com\/kb\/30-lua-quiz-questions-and-answers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/onlineexammaker.com\/kb\/30-lua-quiz-questions-and-answers\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/onlineexammaker.com\/kb\/30-lua-quiz-questions-and-answers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/onlineexammaker.com\/kb\/"},{"@type":"ListItem","position":2,"name":"30 Lua 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\/17336"}],"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=17336"}],"version-history":[{"count":3,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/posts\/17336\/revisions"}],"predecessor-version":[{"id":28181,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/posts\/17336\/revisions\/28181"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/media\/17337"}],"wp:attachment":[{"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/media?parent=17336"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/categories?post=17336"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/tags?post=17336"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}