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?
Providing access to the object only through its member functions,while keeping the details private is called_____
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 is the default layout manager for a panel?
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];
Which is not a characteristics of Java programming language?