{"id":14524,"date":"2023-08-10T06:59:22","date_gmt":"2023-08-10T06:59:22","guid":{"rendered":"https:\/\/onlineexammaker.com\/kb\/?p=14524"},"modified":"2024-04-02T15:14:02","modified_gmt":"2024-04-02T15:14:02","slug":"30-java-quiz-questions-and-answers","status":"publish","type":"post","link":"https:\/\/onlineexammaker.com\/kb\/30-java-quiz-questions-and-answers\/","title":{"rendered":"30 Java Quiz Questions and Answers"},"content":{"rendered":"<p>Java is a widely-used, object-oriented programming language that was developed by James Gosling and his team at Sun Microsystems (acquired by Oracle Corporation) in the mid-1990s. It was designed to be platform-independent, secure, and easy to use. Java has since become one of the most popular and versatile programming languages, used for a wide range of applications, including web development, mobile app development, enterprise software, scientific computing, and more.<\/p>\n<p>Key features and characteristics of the Java programming language include:<\/p>\n<p>Platform Independence: Java programs are compiled into an intermediate form called bytecode, which can run on any platform with a Java Virtual Machine (JVM). This &#8220;Write Once, Run Anywhere&#8221; (WORA) capability makes Java highly portable.<\/p>\n<p>Object-Oriented: Java follows the object-oriented programming paradigm, allowing developers to model real-world entities as objects with attributes (fields) and behaviors (methods).<\/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>Robustness: Java was designed with a strong emphasis on error prevention and robustness. It includes features like automatic memory management (garbage collection) and exception handling to minimize runtime errors and crashes.<\/p>\n<p>Multi-threading: Java provides built-in support for multi-threading, allowing developers to create concurrent programs with ease. This is crucial for developing applications that can handle multiple tasks simultaneously.<\/p>\n<h3>Article outline<\/h3>\n<ul class=\"article_list\">\n<li><a href=\"#1\">Part 1: 30 Java quiz questions &#038; answers<\/a><\/li>\n<li><a href=\"#2\">Part 2: Download Java 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\/Java.webp\" alt=\"\" width=\"783\" height=\"338\" class=\"alignnone size-full wp-image-14525\" srcset=\"https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2023\/08\/Java.webp 783w, https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2023\/08\/Java-300x130.webp 300w, https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2023\/08\/Java-768x332.webp 768w\" sizes=\"(max-width: 783px) 100vw, 783px\" \/><\/p>\n<h3 id=\"1\">Part 1: 30 Java quiz questions &#038; answers<\/h3>\n<p>1. What is Java primarily known for?<br \/>\n   a) Being a markup language<br \/>\n   b) Being a scripting language<br \/>\n   c) Being an object-oriented programming language<br \/>\n   d) Being a low-level programming language<\/p>\n<p>   Answer: c) Being an object-oriented programming language<\/p>\n<p>2. What is the bytecode in Java?<br \/>\n   a) Code written in Java syntax<br \/>\n   b) Code that runs directly on the CPU<br \/>\n   c) Platform-specific machine code<br \/>\n   d) Intermediate code that runs on the Java Virtual Machine (JVM)<\/p>\n<p>   Answer: d) Intermediate code that runs on the Java Virtual Machine (JVM)<\/p>\n<p>3. Which keyword is used to define a constant variable in Java?<br \/>\n   a) constant<br \/>\n   b) final<br \/>\n   c) static<br \/>\n   d) immutable<\/p>\n<p>   Answer: b) final<\/p>\n<p>4. What is the main advantage of Java&#8217;s platform independence?<br \/>\n   a) Faster execution of code<br \/>\n   b) Lower memory consumption<br \/>\n   c) Ability to run on any platform with a JVM<br \/>\n   d) Access to native OS functions<\/p>\n<p>   Answer: c) Ability to run on any platform with a JVM<\/p>\n<p>5. Which method is used to start the execution of a Java program?<br \/>\n   a) main()<br \/>\n   b) start()<br \/>\n   c) execute()<br \/>\n   d) run()<\/p>\n<p>   Answer: a) main()<\/p>\n<p>6. In Java, what is the purpose of the &#8220;new&#8221; keyword?<br \/>\n   a) To create a new object instance<br \/>\n   b) To define a new class<br \/>\n   c) To allocate memory for variables<br \/>\n   d) To initialize an array<\/p>\n<p>   Answer: a) To create a new object instance<\/p>\n<p>7. What is the correct syntax to declare an array in Java?<br \/>\n   a) int[] numbers = {1, 2, 3};<br \/>\n   b) array numbers = [1, 2, 3];<br \/>\n   c) int numbers = {1, 2, 3};<br \/>\n   d) array int numbers[3];<\/p>\n<p>   Answer: a) int[] numbers = {1, 2, 3};<\/p>\n<p>8. Which access modifier makes a class or member accessible only within the same package?<br \/>\n   a) public<br \/>\n   b) protected<br \/>\n   c) private<br \/>\n   d) default<\/p>\n<p>   Answer: d) default<\/p>\n<p>9. What is the output of the following Java code?<\/p>\n<p>&#8220;`java<br \/>\nint x = 5;<br \/>\nSystem.out.println(x++ + ++x);<br \/>\n&#8220;`<\/p>\n<p>   a) 10<br \/>\n   b) 11<br \/>\n   c) 12<br \/>\n   d) 15<\/p>\n<p>   Answer: c) 12<\/p>\n<p>10. Which method is used to read input from the user in Java?<br \/>\n    a) System.out.print()<br \/>\n    b) System.in.read()<br \/>\n    c) System.input()<br \/>\n    d) Scanner.nextLine()<\/p>\n<p>    Answer: d) Scanner.nextLine()<\/p>\n<p>11. Which keyword is used to create a subclass in Java?<br \/>\n    a) subclass<br \/>\n    b) extends<br \/>\n    c) inherits<br \/>\n    d) super<\/p>\n<p>    Answer: b) extends<\/p>\n<p>12. What does the &#8220;NullPointerException&#8221; indicate in Java?<br \/>\n    a) The program has a syntax error.<br \/>\n    b) A variable is declared but not initialized.<br \/>\n    c) An invalid cast operation is performed.<br \/>\n    d) An attempt to access an object that is null.<\/p>\n<p>    Answer: d) An attempt to access an object that is null.<\/p>\n<p>13. Which data type is used to store single characters in Java?<br \/>\n    a) char<br \/>\n    b) String<br \/>\n    c) Character<br \/>\n    d) letter<\/p>\n<p>    Answer: a) char<\/p>\n<p>14. What is the purpose of the &#8220;break&#8221; statement in Java?<br \/>\n    a) To exit a loop or switch statement<br \/>\n    b) To end the execution of a program<br \/>\n    c) To skip the current iteration of a loop<br \/>\n    d) To resume the execution after a pause<\/p>\n<p>    Answer: a) To exit a loop or switch statement<\/p>\n<p>15. Which of the following is NOT a valid Java identifier?<br \/>\n    a) _variable<br \/>\n    b) 123var<br \/>\n    c) $name<br \/>\n    d) myVariable<\/p>\n<p>    Answer: b) 123var<\/p>\n<h3 id=\"2\">Part 2: Download Java 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\/441-Java.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 does the &#8220;static&#8221; keyword mean in Java?<br \/>\n    a) The variable is constant and cannot be changed.<br \/>\n    b) The variable is accessible without creating an object of the class.<br \/>\n    c) The variable can only be accessed by subclasses.<br \/>\n    d) The variable is local to the method where it is declared.<\/p>\n<p>    Answer: b) The variable is accessible without creating an object of the class.<\/p>\n<p>18. What is the output of the following Java code?<\/p>\n<p>&#8220;`java<br \/>\nString message = &#8220;Hello&#8221;;<br \/>\nmessage.concat(&#8221; World&#8221;);<br \/>\nSystem.out.println(message);<br \/>\n&#8220;`<\/p>\n<p>    a) Hello<br \/>\n    b) World<br \/>\n    c) Hello World<br \/>\n    d) The code will not compile due to an error.<\/p>\n<p>    Answer: a) Hello<\/p>\n<p>19. Which Java keyword is used to handle exceptions?<br \/>\n    a) try<br \/>\n    b) handle<br \/>\n    c) catch<br \/>\n    d) throw<\/p>\n<p>    Answer: c) catch<\/p>\n<p>20. What is the correct way to declare a method that does not return any value in Java?<br \/>\n    a) void methodName()<br \/>\n    b) int methodName()<br \/>\n    c) String methodName()<br \/>\n    d) static methodName()<\/p>\n<p>    Answer: a) void methodName()<\/p>\n<p>21. Which of the following statements creates a copy of an array in Java?<br \/>\n    a) arrayCopy = originalArray<br \/>\n    b) arrayCopy = Arrays.copy(originalArray)<br \/>\n    c) arrayCopy = originalArray.clone()<br \/>\n    d) arrayCopy = originalArray.copy()<\/p>\n<p>    Answer: c) arrayCopy = originalArray.clone()<\/p>\n<p>22. What does the &#8220;super&#8221; keyword refer to in Java?<br \/>\n    a) The superclass of the current class<br \/>\n    b) The current instance of the class<br \/>\n    c) The subclass of the current class<br \/>\n    d) The parent package of the current class<\/p>\n<p>    Answer: a) The superclass of the current class<\/p>\n<p>23. What is the correct way to convert a String to an integer in Java?<br \/>\n    a) int num = Integer.parseInt(&#8220;123&#8221;);<br \/>\n    b) int num = &#8220;123&#8221;.toInt();<br \/>\n    c) int num = (int) &#8220;123&#8221;;<br \/>\n    d) int num = Integer.value(&#8220;123&#8221;);<\/p>\n<p>    Answer: a) int num = Integer.parseInt(&#8220;123&#8221;);<\/p>\n<p>24. Which Java operator is used to allocate memory for an object?<br \/>\n    a) new<br \/>\n    b) alloc<br \/>\n    c) malloc<br \/>\n    d) create<\/p>\n<p>    Answer: a) new<\/p>\n<p>25. What is the purpose of the &#8220;this&#8221; keyword in Java?<br \/>\n    a) To refer to the current class instance<br \/>\n    b) To create a new object<br \/>\n    c) To access static variables<br \/>\n    d) To call a superclass constructor<\/p>\n<p>    Answer: a) To refer to the current class instance<\/p>\n<p>26. What is the correct way to declare a constant variable in Java?<br \/>\n    a) constant int num = 10;<br \/>\n    b) int num = 10;<br \/>\n       num.constant = true;<br \/>\n    c) final int num = 10;<br \/>\n    d) const int num = 10;<\/p>\n<p>    Answer: c) final int num = 10;<\/p>\n<div class=\"refer_box\">\n<p class=\"refer_box_title\">Pro Tip<\/p>\n<p class=\"refer_box_text\">You can build engaging online quizzes with our <a href=\"https:\/\/onlineexammaker.com?refer=blog_refer\">free online quiz maker<\/a>.<\/p>\n<\/div>\n<p>27. Which of the following statements is true about Java interfaces?<br \/>\n    a) Interfaces can be instantiated to create objects.<br \/>\n    b) A class can implement multiple interfaces.<br \/>\n    c) Interfaces can have constructors.<br \/>\n    d) Interfaces can be used to define concrete methods.<\/p>\n<p>    Answer: b) A class can implement multiple interfaces.<\/p>\n<p>29. What is the correct way to access a static variable in Java?<br \/>\n    a) ClassName.variableName<br \/>\n    b) this.variableName<br \/>\n    c) super.variableName<br \/>\n    d) variableName<\/p>\n<p>    Answer: a) ClassName.variableName<\/p>\n<p>30. How can you stop the execution of a thread in Java?<br \/>\n    a) Call the stop() method on the thread.<br \/>\n    b) Set a flag variable to stop the thread&#8217;s execution.<br \/>\n    c) Call the halt() method on the thread.<br \/>\n    d) Use the yield() method to pause the thread.<\/p>\n<p>    Answer: b) Set a flag variable to stop the thread&#8217;s execution.<\/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>Java is a widely-used, object-oriented programming language that was developed by James Gosling and his team at Sun Microsystems (acquired by Oracle Corporation) in the mid-1990s. It was designed to be platform-independent, secure, and easy to use. Java has since become one of the most popular and versatile programming languages, used for a wide range [&hellip;]<\/p>\n","protected":false},"author":7,"featured_media":14525,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[353],"tags":[],"class_list":["post-14524","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 Java 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-java-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 Java Quiz Questions and Answers - OnlineExamMaker Blog\" \/>\n<meta property=\"og:description\" content=\"Java is a widely-used, object-oriented programming language that was developed by James Gosling and his team at Sun Microsystems (acquired by Oracle Corporation) in the mid-1990s. It was designed to be platform-independent, secure, and easy to use. Java has since become one of the most popular and versatile programming languages, used for a wide range [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/onlineexammaker.com\/kb\/30-java-quiz-questions-and-answers\/\" \/>\n<meta property=\"og:site_name\" content=\"OnlineExamMaker Blog\" \/>\n<meta property=\"article:published_time\" content=\"2023-08-10T06:59:22+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-02T15:14:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2023\/08\/Java.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"783\" \/>\n\t<meta property=\"og:image:height\" content=\"338\" \/>\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-java-quiz-questions-and-answers\/\",\"url\":\"https:\/\/onlineexammaker.com\/kb\/30-java-quiz-questions-and-answers\/\",\"name\":\"30 Java Quiz Questions and Answers - OnlineExamMaker Blog\",\"isPartOf\":{\"@id\":\"https:\/\/onlineexammaker.com\/kb\/#website\"},\"datePublished\":\"2023-08-10T06:59:22+00:00\",\"dateModified\":\"2024-04-02T15:14:02+00:00\",\"author\":{\"@id\":\"https:\/\/onlineexammaker.com\/kb\/#\/schema\/person\/395b2b5bfc990b8d494fc7b498db795b\"},\"breadcrumb\":{\"@id\":\"https:\/\/onlineexammaker.com\/kb\/30-java-quiz-questions-and-answers\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/onlineexammaker.com\/kb\/30-java-quiz-questions-and-answers\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/onlineexammaker.com\/kb\/30-java-quiz-questions-and-answers\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/onlineexammaker.com\/kb\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"30 Java 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 Java 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-java-quiz-questions-and-answers\/","og_locale":"en_US","og_type":"article","og_title":"30 Java Quiz Questions and Answers - OnlineExamMaker Blog","og_description":"Java is a widely-used, object-oriented programming language that was developed by James Gosling and his team at Sun Microsystems (acquired by Oracle Corporation) in the mid-1990s. It was designed to be platform-independent, secure, and easy to use. Java has since become one of the most popular and versatile programming languages, used for a wide range [&hellip;]","og_url":"https:\/\/onlineexammaker.com\/kb\/30-java-quiz-questions-and-answers\/","og_site_name":"OnlineExamMaker Blog","article_published_time":"2023-08-10T06:59:22+00:00","article_modified_time":"2024-04-02T15:14:02+00:00","og_image":[{"width":783,"height":338,"url":"https:\/\/onlineexammaker.com\/kb\/wp-content\/uploads\/2023\/08\/Java.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-java-quiz-questions-and-answers\/","url":"https:\/\/onlineexammaker.com\/kb\/30-java-quiz-questions-and-answers\/","name":"30 Java Quiz Questions and Answers - OnlineExamMaker Blog","isPartOf":{"@id":"https:\/\/onlineexammaker.com\/kb\/#website"},"datePublished":"2023-08-10T06:59:22+00:00","dateModified":"2024-04-02T15:14:02+00:00","author":{"@id":"https:\/\/onlineexammaker.com\/kb\/#\/schema\/person\/395b2b5bfc990b8d494fc7b498db795b"},"breadcrumb":{"@id":"https:\/\/onlineexammaker.com\/kb\/30-java-quiz-questions-and-answers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/onlineexammaker.com\/kb\/30-java-quiz-questions-and-answers\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/onlineexammaker.com\/kb\/30-java-quiz-questions-and-answers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/onlineexammaker.com\/kb\/"},{"@type":"ListItem","position":2,"name":"30 Java 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\/14524"}],"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=14524"}],"version-history":[{"count":7,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/posts\/14524\/revisions"}],"predecessor-version":[{"id":28514,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/posts\/14524\/revisions\/28514"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/media\/14525"}],"wp:attachment":[{"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/media?parent=14524"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/categories?post=14524"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/onlineexammaker.com\/kb\/wp-json\/wp\/v2\/tags?post=14524"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}