Java Quizzes, Questions & Answers
Recent Quizzes
Chapter 5 Revision
Questions: 18 | Attempts: 285 | Last updated: Mar 21, 2023
-
Sample Questionpublic class Converter { public static void main(String args [ ]) { Converter con = new Converter(); con.dollartoRupees(15); } double dollartoRupees(int dollar) { System.out.println (dollar+" dollar is equivalent to Rs" +dollar*25); } } What will be the output of this program?
Questions: 10 | Attempts: 133 | Last updated: Mar 20, 2024
-
Sample QuestionTrue or False: Arrays cannot be passed as parameters into methods, but their elements can be passed individually.
Questions: 10 | Attempts: 186 | Last updated: Mar 21, 2023
-
Sample QuestionTrue or False: Constructors do not have a type.
Questions: 10 | Attempts: 131 | Last updated: Mar 11, 2024
-
Sample QuestionTrue or False: Void methods do not have a type.
Questions: 9 | Attempts: 326 | Last updated: Mar 21, 2023
-
Sample QuestionTrue or False: A loop is a control-structure used for repetition of certain statements.
Questions: 11 | Attempts: 735 | Last updated: Mar 22, 2023
-
Sample QuestionTrue or False: Hello! is an example of a legal identifier.
Questions: 10 | Attempts: 135 | Last updated: May 15, 2024
-
Sample QuestionTrue or False: A keyboard is an example of an output device.
Questions: 31 | Attempts: 858 | Last updated: Aug 21, 2023
-
Sample QuestionIn Java, the mechanism that allows you to combine data and operations on the data into a single unit is called a(n) ____.
Chapter 3 Revision
Questions: 10 | Attempts: 184 | Last updated: Mar 17, 2023
-
Sample QuestionWhich of the following is NOT a reserved word in Java?
Chapter 2 Revision
Questions: 6 | Attempts: 150 | Last updated: Aug 20, 2024
-
Sample QuestionA Java source code can be created in ______ .
Advertisement