Java Miscellaneous Online Test Series 4 | Core Java Quiz | Java Quiz
Finish Quiz
0 of 20 questions completed
Questions:
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
Information
Java Miscellaneous Online Test Series 4 | Core Java Quiz | Java Online Test. Let’s play Java online tes
This paper has 20 questions.
Time allowed is 25 minutes.
The Java Miscellaneous Mock Test is Very helpful for all students. Now Scroll down below n click on “Start Quiz” or “Start Test” and Test yourself.
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading...
You must sign in or sign up to start the quiz.
You have to finish following quiz, to start this quiz:
Results
0 of 20 questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 points, (0)
Average score |
|
Your score |
|
Categories
- Not categorized 0%
Pos. | Name | Entered on | Points | Result |
---|---|---|---|---|
Table is loading | ||||
No data available | ||||
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- Answered
- Review
-
Question 1 of 20
1. Question
Following code will result in: int a = 3.5;
Correct
Incorrect
-
Question 2 of 20
2. Question
The methods wait(), notify() and notifyAll() in Object need to be called from synchronized pieces of code.
Correct
Incorrect
-
Question 3 of 20
3. Question
What scripting language can you use in the Java SE 6 platform?
Correct
Incorrect
-
Question 4 of 20
4. Question
JDK 6 incorporates an advanced version of the SwingWorker class into core Java technology. What is the purpose of the SwingWorker class?
Correct
Incorrect
-
Question 5 of 20
5. Question
If class A implements an interface does it need to implement all methods of that interface?
Correct
Incorrect
-
Question 6 of 20
6. Question
Synchronized is a keyword to tell a Thread to grab an Object lock before continuing execution.
Correct
Incorrect
-
Question 7 of 20
7. Question
How can I sort JTable content?
Correct
Incorrect
-
Question 8 of 20
8. Question
Can you compare a boolean to an integer?
Correct
Incorrect
-
Question 9 of 20
9. Question
The default statement of a switch is always executed.
Correct
Incorrect
-
Question 10 of 20
10. Question
An abstract class can have non-abstract methods.
Correct
Incorrect
-
Question 11 of 20
11. Question
What is the correct annotation to use to export a method as a web service operation using Java API for XML Web Services (JAX-WS), version 2.0?
Correct
Incorrect
-
Question 12 of 20
12. Question
What is an instanceof
Correct
Incorrect
-
Question 13 of 20
13. Question
In JDK 6, the JMX Monitor API now uses a thread pool to increase performance. What is the purpose of the JMX Monitor API?
Correct
Incorrect
-
Question 14 of 20
14. Question
How do you launch your host’s default browser to view a specific URL?
Correct
Incorrect
-
Question 15 of 20
15. Question
Methods that are marked protected can be called in any subclass of that class.
Correct
Incorrect
-
Question 16 of 20
16. Question
Inner classes can be defined within methods.
Correct
Incorrect
-
Question 17 of 20
17. Question
Primitive datatypes are allocated on a stack.
Correct
Incorrect
-
Question 18 of 20
18. Question
How can you prevent a member variable from becoming serialized?
Correct
Incorrect
-
Question 19 of 20
19. Question
Java keywords are written in lowercase as well as uppercase.
Correct
Incorrect
-
Question 20 of 20
20. Question
Following code will result in:
class A {
public static void main(String [] args) {
B b = new A();
}
} class B extends A {}Correct
Incorrect