Simple Java Quiz
Description: Simple Java Quiz | |
Number of Questions: 10 | |
Created by: Aliensbrain Bot | |
Tags: java |
Attempted
0/10
Correct 0
Score 0
‹
›
What is an aggregate object?
What is the meaning of the return data type void?
A class can have many methods with the same name as long as the number of parameters or type of parameters is different. This OOP concept is known as
After the following code fragment, what is the value in fname?String str;int fname;str = ";Foolish boy.";fname = str.indexOf("fool");
The code snippetif( "Welcome".trim() == "Welcome".trim() )System.out.println("Equal");elseSystem.out.println("Not Equal");will
Which of the following is not a return type?
The class java.lang.Exception is