{"id":15501,"date":"2023-08-15T23:17:13","date_gmt":"2023-08-15T23:17:13","guid":{"rendered":"https:\/\/onlineexammaker.com\/kb\/?p=15501"},"modified":"2024-04-02T07:40:34","modified_gmt":"2024-04-02T07:40:34","slug":"30-kotlin-quiz-questions-and-answers","status":"publish","type":"post","link":"https:\/\/onlineexammaker.com\/kb\/30-kotlin-quiz-questions-and-answers\/","title":{"rendered":"30 Kotlin Quiz Questions and Answers"},"content":{"rendered":"<p>Kotlin is a modern, open-source programming language developed by JetBrains, a software development company based in Russia. It was first released in 2011 but gained significant popularity in the following years, especially in the Android app development community. Kotlin is designed to be fully interoperable with Java, making it an excellent choice for building Android applications and other projects that rely on the Java Virtual Machine (JVM).<\/p>\n<p>Kotlin has quickly grown to become one of the most popular programming languages for Android development and beyond. Its versatility, readability, and strong support for modern programming paradigms have contributed to its widespread adoption in various domains, including server-side development, web development, and enterprise applications. As an open-source language with an active community, Kotlin continues to evolve and expand its capabilities, attracting developers from diverse backgrounds and contributing to the overall growth of the Kotlin ecosystem.<\/p>\n<div class=\"refer_box\">\n<p class=\"refer_box_title\">You might like to know<\/p>\n<p class=\"refer_box_text\">Create an auto-grading quiz\/assessment without any coding &#8211; <a href=\"https:\/\/onlineexammaker.com?refer=blog_refer\">try OnlineExamMaker today<\/a>!<\/p>\n<\/div>\n<h3>Article outline<\/h3>\n<ul class=\"article_list\">\n<li><a href=\"#1\">Part 1: 30 Kotlin quiz questions &#038; answers<\/a><\/li>\n<li><a href=\"#2\">Part 2: Download Kotlin 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\/08\/Kotlin.webp\" alt=\"\" width=\"850\" height=\"446\" class=\"alignnone size-full wp-image-15502\" srcset=\"https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2023\/08\/Kotlin.webp 850w, https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2023\/08\/Kotlin-300x157.webp 300w, https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2023\/08\/Kotlin-768x403.webp 768w\" sizes=\"(max-width: 850px) 100vw, 850px\" \/><\/p>\n<h3 id=\"1\">Part 1: 30 Kotlin quiz questions &#038; answers<\/h3>\n<p>1. What is Kotlin primarily designed for?<br \/>\n   a) Web development<br \/>\n   b) Mobile app development<br \/>\n   c) Data analysis<br \/>\n   d) Game development<br \/>\n   Answer: b) Mobile app development<\/p>\n<p>2. Who developed the Kotlin programming language?<br \/>\n   a) Google<br \/>\n   b) JetBrains<br \/>\n   c) Apple<br \/>\n   d) Microsoft<br \/>\n   Answer: b) JetBrains<\/p>\n<p>3. Which virtual machine does Kotlin target for execution?<br \/>\n   a) .NET<br \/>\n   b) JVM (Java Virtual Machine)<br \/>\n   c) LLVM<br \/>\n   d) V8 (JavaScript engine)<br \/>\n   Answer: b) JVM (Java Virtual Machine)<\/p>\n<p>4. What is the level of Kotlin&#8217;s interoperability with Java?<br \/>\n   a) Partially interoperable<br \/>\n   b) Not interoperable<br \/>\n   c) Fully interoperable<br \/>\n   d) Interoperable only with Android projects<br \/>\n   Answer: c) Fully interoperable<\/p>\n<p>5. What does Kotlin&#8217;s &#8220;null safety&#8221; feature address?<br \/>\n   a) Memory leaks<br \/>\n   b) Lack of proper documentation<br \/>\n   c) NullPointerExceptions (NPEs)<br \/>\n   d) Slow performance<br \/>\n   Answer: c) NullPointerExceptions (NPEs)<\/p>\n<p>6. What keyword is used to declare a variable as nullable in Kotlin?<br \/>\n   a) null<br \/>\n   b) void<br \/>\n   c) nullable<br \/>\n   d) ?<br \/>\n   Answer: d) ?<\/p>\n<p>7. What is the default visibility modifier for top-level declarations in Kotlin?<br \/>\n   a) private<br \/>\n   b) public<br \/>\n   c) protected<br \/>\n   d) internal<br \/>\n   Answer: b) public<\/p>\n<p>8. Which Kotlin feature is used to automatically generate useful methods like `equals()`, `hashCode()`, and `toString()` for data classes?<br \/>\n   a) Data annotations<br \/>\n   b) Smart casts<br \/>\n   c) Extension functions<br \/>\n   d) Data classes<br \/>\n   Answer: d) Data classes<\/p>\n<p>9. What is the keyword used to define an extension function in Kotlin?<br \/>\n   a) fun<br \/>\n   b) extension<br \/>\n   c) extend<br \/>\n   d) infix<br \/>\n   Answer: a) fun<\/p>\n<p>10. What is the purpose of Kotlin&#8217;s `let` function?<br \/>\n    a) To create a new variable<br \/>\n    b) To define a constant value<br \/>\n    c) To modify a variable&#8217;s value<br \/>\n    d) To perform a series of operations on a non-null object<br \/>\n    Answer: d) To perform a series of operations on a non-null object<\/p>\n<p>11. What is the correct syntax to define a lambda expression in Kotlin?<br \/>\n    a) lambda (x: Int) -> x * 2<br \/>\n    b) {x: Int -> x * 2}<br \/>\n    c) (x: Int) -> {x * 2}<br \/>\n    d) (x: Int) => x * 2<br \/>\n    Answer: b) {x: Int -> x * 2}<\/p>\n<p>12. In Kotlin, what does the `lateinit` modifier do when applied to a property?<br \/>\n    a) It delays the initialization of the property until it is accessed for the first time.<br \/>\n    b) It allows the property to be assigned a value only once.<br \/>\n    c) It marks the property as mutable.<br \/>\n    d) It ensures that the property is always initialized with a non-null value.<br \/>\n    Answer: a) It delays the initialization of the property until it is accessed for the first time.<\/p>\n<p>13. Which Kotlin keyword is used to declare a class that cannot be instantiated and may contain abstract properties and methods?<br \/>\n    a) final<br \/>\n    b) open<br \/>\n    c) abstract<br \/>\n    d) sealed<br \/>\n    Answer: c) abstract<\/p>\n<p>14. How do you define a secondary constructor in Kotlin?<br \/>\n    a) constructor()<br \/>\n    b) init()<br \/>\n    c) secondary()<br \/>\n    d) constructor(args: String)<br \/>\n    Answer: d) constructor(args: String)<\/p>\n<p>15. In Kotlin, what does the &#8220;by&#8221; keyword do when used in a class declaration?<br \/>\n    a) It specifies a superclass for the class.<br \/>\n    b) It delegates the implementation of an interface to another object.<br \/>\n    c) It defines a class property.<br \/>\n    d) It specifies an extension function for the class.<br \/>\n    Answer: b) It delegates the implementation of an interface to another object.<\/p>\n<h3 id=\"2\">Part 2: Download Kotlin 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\/541-Kotlin.zip\">Free Download <\/a><\/div>\n<div class=\"p-style-b\">Download quiz questions<\/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\/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>\n<\/div>\n<p>16. What is the purpose of the `when` keyword in Kotlin?<br \/>\n    a) To define a loop<br \/>\n    b) To define a conditional statement<br \/>\n    c) To define an exception handler<br \/>\n    d) To define a switch-case statement<br \/>\n    Answer: d) To define a switch-case statement<\/p>\n<p>17. What Kotlin feature is used for safely performing a type cast in situations where it may fail?<br \/>\n    a) Smart casts<br \/>\n    b) Safe casts<br \/>\n    c) Smart conversions<br \/>\n    d) Safe conversions<br \/>\n    Answer: b) Safe casts<\/p>\n<p>18. What is the output of the following Kotlin code snippet?<br \/>\n    &#8220;`kotlin<br \/>\n    val numbers = listOf(1, 2, 3, 4, 5)<br \/>\n    val result = numbers.filter { it > 2 }.map { it * 2 }<br \/>\n    println(result)<br \/>\n    &#8220;`<br \/>\n    a) [2, 4, 6, 8, 10]<br \/>\n    b) [6, 8, 10]<br \/>\n    c) [4, 6, 8, 10]<br \/>\n    d) [2, 4]<br \/>\n    Answer: b) [6, 8, 10]<\/p>\n<p>19. In Kotlin, what does the &#8220;infix&#8221; keyword do when used with a function?<br \/>\n    a) It makes the function an extension function.<br \/>\n    b) It allows the function to be called without using parentheses.<br \/>\n    c) It allows the function to be called using the infix notation.<br \/>\n    d) It makes the function a higher-order function.<br \/>\n    Answer: c) It allows the function to be called using the infix notation.<\/p>\n<p>20. Which of the following is the correct syntax to declare a read-only property in Kotlin?<br \/>\n    a) val myProperty: Int<br \/>\n    b) var myProperty: Int<br \/>\n    c) const myProperty: Int<br \/>\n    d) let myProperty: Int<br \/>\n    Answer: a) val myProperty: Int<\/p>\n<p>21. In Kotlin, how do you perform string interpolation (inserting variables into a string)?<br \/>\n    a) &#8220;Hello, $name!&#8221;<br \/>\n    b) &#8220;Hello, {name}!&#8221;<br \/>\n    c) &#8220;Hello, {name}!&#8221;<br \/>\n    d) &#8220;Hello, {0}!&#8221;<br \/>\n    Answer: a) &#8220;Hello, $name!&#8221;<\/p>\n<p>22. What is the output of the following Kotlin code snippet?<br \/>\n    &#8220;`kotlin<br \/>\n    val list = listOf(1, 2, 3, 4, 5)<br \/>\n    val sum = list.reduce { acc, i -> acc + i }<br \/>\n    println(sum)<br \/>\n    &#8220;`<br \/>\n    a) 10<br \/>\n    b) 15<br \/>\n    c) 14<br \/>\n    d) 120<br \/>\n    Answer: b) 15<\/p>\n<p>23. How do you create a new instance of a class in Kotlin without using the `new` keyword?<br \/>\n    a) val obj = MyClass.new()<br \/>\n    b) val obj = new MyClass()<br \/>\n    c) val obj = MyClass()<br \/>\n    d) val obj = create MyClass()<br \/>\n    Answer: c) val obj = MyClass()<\/p>\n<p>24. In Kotlin, what is the purpose of the `init` block in a class?<br \/>\n    a) To initialize the primary constructor of<\/p>\n<p> the class.<br \/>\n    b) To define secondary constructors.<br \/>\n    c) To initialize properties when the class is instantiated.<br \/>\n    d) To define extension functions for the class.<br \/>\n    Answer: c) To initialize properties when the class is instantiated.<\/p>\n<p>25. What does the `run` function do in Kotlin?<br \/>\n    a) It executes a block of code asynchronously.<br \/>\n    b) It runs a coroutine in a separate thread.<br \/>\n    c) It executes a block of code on a specified thread.<br \/>\n    d) It allows you to perform a series of operations on a non-null object.<br \/>\n    Answer: d) It allows you to perform a series of operations on a non-null object.<\/p>\n<p>26. What is the purpose of the `with` function in Kotlin?<br \/>\n    a) To define extension functions for a class.<br \/>\n    b) To create a new instance of a class.<br \/>\n    c) To specify the receiver object for a lambda expression.<br \/>\n    d) To perform a series of operations on a non-null object.<br \/>\n    Answer: c) To specify the receiver object for a lambda expression.<\/p>\n<p>27. In Kotlin, what does the &#8220;by lazy&#8221; keyword do when used with a property?<br \/>\n    a) It marks the property as mutable.<br \/>\n    b) It defers the initialization of the property until it is accessed for the first time.<br \/>\n    c) It allows the property to be assigned a value only once.<br \/>\n    d) It specifies the visibility modifier for the property.<br \/>\n    Answer: b) It defers the initialization of the property until it is accessed for the first time.<\/p>\n<p>28. What is the correct syntax to define an interface in Kotlin?<br \/>\n    a) class MyInterface {}<br \/>\n    b) interface MyInterface {}<br \/>\n    c) interface = MyInterface {}<br \/>\n    d) interface = MyInterface<br \/>\n    Answer: b) interface MyInterface {}<\/p>\n<p>29. In Kotlin, how do you create a range of numbers from 1 to 10 (inclusive)?<br \/>\n    a) val range = 1..10<br \/>\n    b) val range = 1 to 10<br \/>\n    c) val range = 1 until 11<br \/>\n    d) val range = 1 upTo 10<br \/>\n    Answer: a) val range = 1..10<\/p>\n<p>30. What does the &#8220;inline&#8221; keyword do when used with a higher-order function in Kotlin?<br \/>\n    a) It inlines the function call, reducing overhead.<br \/>\n    b) It makes the function an extension function.<br \/>\n    c) It allows the function to be called using the infix notation.<br \/>\n    d) It allows the function to be called without using parentheses.<br \/>\n    Answer: a) It inlines the function call, reducing overhead.<\/p>\n<h3 id=\"3\">Part 3: Best online quiz making platform &#8211; OnlineExamMaker<\/h3>\n<p>OnlineExamMaker offers one stop solution for online examination and assessment. It would solve all your problems in preparation for the exam. Comes with a powerful candidate management system, you can add and import candidates, group similar aspirants, easily assign tests to the candidates to have a consistent track and monitor on the candidate&#8217;s 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>Kotlin is a modern, open-source programming language developed by JetBrains, a software development company based in Russia. It was first released in 2011 but gained significant popularity in the following years, especially in the Android app development community. Kotlin is designed to be fully interoperable with Java, making it an excellent choice for building Android [&hellip;]<\/p>\n","protected":false},"author":7,"featured_media":15502,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[353],"tags":[],"class_list":["post-15501","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 Kotlin 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-kotlin-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 Kotlin Quiz Questions and Answers - OnlineExamMaker Blog\" \/>\n<meta property=\"og:description\" content=\"Kotlin is a modern, open-source programming language developed by JetBrains, a software development company based in Russia. It was first released in 2011 but gained significant popularity in the following years, especially in the Android app development community. Kotlin is designed to be fully interoperable with Java, making it an excellent choice for building Android [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/onlineexammaker.com\/kb\/30-kotlin-quiz-questions-and-answers\/\" \/>\n<meta property=\"og:site_name\" content=\"OnlineExamMaker Blog\" \/>\n<meta property=\"article:published_time\" content=\"2023-08-15T23:17:13+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-02T07:40:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2023\/08\/Kotlin.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"850\" \/>\n\t<meta property=\"og:image:height\" content=\"446\" \/>\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-kotlin-quiz-questions-and-answers\/\",\"url\":\"https:\/\/onlineexammaker.com\/kb\/30-kotlin-quiz-questions-and-answers\/\",\"name\":\"30 Kotlin Quiz Questions and Answers - OnlineExamMaker Blog\",\"isPartOf\":{\"@id\":\"https:\/\/onlineexammaker.com\/kb\/#website\"},\"datePublished\":\"2023-08-15T23:17:13+00:00\",\"dateModified\":\"2024-04-02T07:40:34+00:00\",\"author\":{\"@id\":\"https:\/\/onlineexammaker.com\/kb\/#\/schema\/person\/395b2b5bfc990b8d494fc7b498db795b\"},\"breadcrumb\":{\"@id\":\"https:\/\/onlineexammaker.com\/kb\/30-kotlin-quiz-questions-and-answers\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/onlineexammaker.com\/kb\/30-kotlin-quiz-questions-and-answers\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/onlineexammaker.com\/kb\/30-kotlin-quiz-questions-and-answers\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/onlineexammaker.com\/kb\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"30 Kotlin 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 Kotlin 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-kotlin-quiz-questions-and-answers\/","og_locale":"en_US","og_type":"article","og_title":"30 Kotlin Quiz Questions and Answers - OnlineExamMaker Blog","og_description":"Kotlin is a modern, open-source programming language developed by JetBrains, a software development company based in Russia. It was first released in 2011 but gained significant popularity in the following years, especially in the Android app development community. Kotlin is designed to be fully interoperable with Java, making it an excellent choice for building Android [&hellip;]","og_url":"https:\/\/onlineexammaker.com\/kb\/30-kotlin-quiz-questions-and-answers\/","og_site_name":"OnlineExamMaker Blog","article_published_time":"2023-08-15T23:17:13+00:00","article_modified_time":"2024-04-02T07:40:34+00:00","og_image":[{"width":850,"height":446,"url":"https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2023\/08\/Kotlin.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-kotlin-quiz-questions-and-answers\/","url":"https:\/\/onlineexammaker.com\/kb\/30-kotlin-quiz-questions-and-answers\/","name":"30 Kotlin Quiz Questions and Answers - OnlineExamMaker Blog","isPartOf":{"@id":"https:\/\/onlineexammaker.com\/kb\/#website"},"datePublished":"2023-08-15T23:17:13+00:00","dateModified":"2024-04-02T07:40:34+00:00","author":{"@id":"https:\/\/onlineexammaker.com\/kb\/#\/schema\/person\/395b2b5bfc990b8d494fc7b498db795b"},"breadcrumb":{"@id":"https:\/\/onlineexammaker.com\/kb\/30-kotlin-quiz-questions-and-answers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/onlineexammaker.com\/kb\/30-kotlin-quiz-questions-and-answers\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/onlineexammaker.com\/kb\/30-kotlin-quiz-questions-and-answers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/onlineexammaker.com\/kb\/"},{"@type":"ListItem","position":2,"name":"30 Kotlin 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\/15501"}],"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=15501"}],"version-history":[{"count":3,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/posts\/15501\/revisions"}],"predecessor-version":[{"id":28235,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/posts\/15501\/revisions\/28235"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/media\/15502"}],"wp:attachment":[{"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/media?parent=15501"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/categories?post=15501"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/tags?post=15501"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}