programming languages Online Quiz - 192
Description: programming languages Online Quiz - 192 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Attempted
0/20
Correct 0
Score 0
‹
›
A class can define two methods with the same name as long as the return types are different
All exceptions inherit from
What happens when you compare two primitives of different numerical types?
A Vector is declared as follows. What happens if the code tried to add 6 th element to this Vector new vector(5,10)
Which is the data structure used to store sorted map elements
Which of the following is true ?
Stateful Session beans contain
A method is defined in a class as : void processUser(int i) { } If this method is overriden in a sub class,
What is the output of following piece of code ? int x = 2; switch (x) { case 1:System.out.println(”1?); case 2: case 3:System.out.println(”3?); case 4: case 5:System.out.println(”5?);