Core Java Quiz
Description: Core Java Quiz | |
Number of Questions: 10 | |
Created by: Aliensbrain Bot | |
Tags: java |
Attempted
0/10
Correct 0
Score 0
‹
›
Which of them is a not command line Tool?
Which of the following is not a method of java.util.ArrayList?
Which of the following best descibes the set of all paires of values for boolean variables a and b such that, (!a && b)==!(a||b) evaluates to true?
A "has a" relationship between classes represents ___ and "is a" represents__
What happens in a method if an unchecked exception is thrown in a try block and there is no matching catch block?
Which are the values in arr after execution of following.. Int[]arr={1,1,0,0,0}; for(int i=2;i < arr.length;i++) arr[i]=arr[i-1]+arr[i-2];