10th Grade Core Java Quizzes, Questions & Answers
Core Java Quizzes By Grade
9th Grade 10th Grade 11th GradeFind More 10th Grade Subject Quizzes
Literature Periodic Table Psychology Sociology Ethics Photosynthesis Law Software Testing Circulatory System Ionic Equilibrium Solving Equations Programming Healthcare Classification Cell MembranePopular Core Java Topics
Top Trending Core Java Quizzes
Simple Quiz based on basics of Core Java covering almost all important aspects of programming language.Make sure to come out with flying colors.Passing: 80%Time: 30 Minuteswww.java-interviewer.blogspot.com
Questions: 50 | Attempts: 237 | Last updated: Mar 22, 2023
-
Sample QuestionYou would use Java because?
CORE JAVA TEST 6 assesses knowledge in Java file handling, exception management, and object serialization. It evaluates the ability to handle files, manage exceptions, and understand Java's I\/O system, crucial for Java...
Questions: 40 | Attempts: 272 | Last updated: Mar 21, 2023
-
Sample QuestionWhat happens when this code is compiled and executed? String name = null; File file = new File("/folder", name); System.out.print(file.exists());
INTRODUCTION TO OOPS
INTRODUCTION TO JAVA AND SDE
LANGUAGE FUNDAMENTALS AND OPERATORS
Questions: 45 | Attempts: 683 | Last updated: Sep 5, 2023
-
Sample QuestionConsider the following code: 1. class Test { 2. public static void main(String args[]) { 3. double d = 12.3; 4. Dec dec = new Dec(); 5. dec.dec(d); 6. System.out.println(d); 7. } 8. } 9. class Dec{ 10. public void dec(double d) { d = d - 2.0d; } 11. } Which of the following gives the correct value printed at line 6?
Pls do the correction if the answer is wrong in core java.
Questions: 25 | Attempts: 705 | Last updated: Mar 22, 2023
-
Sample QuestionWhich of the following may override a method whose signature is void xyz (float f)?1.void xyz(float f)2.public void xyz(float f3,private void xyz(float f)
Recent Core Java Quizzes
Are you looking for ways to advance your Java MCQ knowledge? The quiz below is set and designed not only to test your Java MCQ knowledge but to also advance it. All the best and enjoy learning.
Questions: 25 | Attempts: 601 | Last updated: Mar 22, 2023
-
Sample QuestionWhat all gets printed when the following gets compiled and run? public class test { public static void main(String args[]) { int i=1, j=1; try { i++; j--; if(i/j > 1) i++; } catch(ArithmeticException e) { System.out.println(0); } catch(ArrayIndexOutOfBoundsException e) { System.out.println(1); } catch(Exception e) { System.out.println(2); } finally { System.out.println(3); } System.out.println(4); } } here
This quiz evaluates your understanding of Core Java, focusing on syntax, programming structures, and key concepts such as static methods and abstract classes. Ideal for learners seeking to test their Java programming skills and...
Questions: 5 | Attempts: 322 | Last updated: Oct 4, 2024
-
Sample QuestionWhich is the correct way to declare and store a character value to a variable?
This Core Java mock test assesses knowledge of Java's access modifiers, inheritance, array initializations, and method overriding. It is designed to enhance understanding of Java programming principles and prepare learners for...
Questions: 35 | Attempts: 140 | Last updated: Aug 6, 2024
-
Sample QuestionWhich access modifier have almost identical behaviour as that of default.?
Do you know the core Java language? Java is a classed based language that was made to have minimum implementation dependencies. It is a general-purpose programming language that allows application developers to run anywhere....
Questions: 40 | Attempts: 148 | Last updated: Mar 21, 2023
-
Sample QuestionChoose the possible constructor arguments of the Float wrapper class.
Advertisement