Java Miscellaneous Online Test Series 2 | Core Java Quiz | Java Online Test
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 2 | Core Java Quiz | Java Online Test. Take CAknowledge.in Free Java Miscellaneous Quiz and test your fundamentals easily. Lets Play with our JAVA online Test Quiz 2. Java Miscellaneous Test Quiz 2 questions and Answers 2024. Java online Test Quiz 2. Java Miscellaneous Quiz 2 Free Mock Test 2024. Java Miscellaneous Test Quiz 2 questions and Answers in PDF. The Java online mock test paper is free for all students. Java Miscellaneous Test is very useful for exam preparation and getting for Rank. Java Miscellaneous Test Quiz 2 questions and Answers in English. Java Miscellaneous Mock test for topic via Miscellaneous Mode. Here we are providing Java Miscellaneous Mock Test in English Now Test your self for “Java Miscellaneous Test in English” Exam by using below quiz…
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
the container of the component class can be accessed thru the method:
Correct
Incorrect
-
Question 2 of 20
2. Question
The CLASS that handles data input from the console is:
Correct
Incorrect
-
Question 3 of 20
3. Question
The following statements make ?length? be what number ?
int length;
length = 4;
length ++;Correct
Incorrect
-
Question 4 of 20
4. Question
What is the proper way to declare a variable ?
Correct
Incorrect
-
Question 5 of 20
5. Question
Java runs on _______.
Correct
Incorrect
-
Question 6 of 20
6. Question
which all of the following equates to true: where s1=”yes”,s2=”yes”,s3=”yes” all hving d same value;
Correct
Incorrect
-
Question 7 of 20
7. Question
Why can’t the whole program just consist of the one line that does the painting ?
Correct
Incorrect
-
Question 8 of 20
8. Question
What is an Applet ?
Correct
Incorrect
-
Question 9 of 20
9. Question
What’s the difference between an Applet and an application ?
Correct
Incorrect
-
Question 10 of 20
10. Question
the try block can contain no of catch blocks & they will be executed in the order is:
Correct
Incorrect
-
Question 11 of 20
11. Question
What will happen when you attempt to compile and run the following code?
public class Static
{
static
{
int x = 5;
}static int x,y;
public static void main(String args[])
{
x–; myMethod();
System.out.println(x + y + ++x);
}public static void myMethod()
{
y = x++ + ++x;
}
}Correct
Incorrect
-
Question 12 of 20
12. Question
What results from the following code?
1. class MyClass
2. {
3. void myMethod(int i) {System.out.println(“int version”);}
4. void myMethod(String s) {System.out.println(“String version”);}
5. public static void main(String args[])
6. {
7. MyClass obj = new MyClass();
8. char ch = ‘c’;
9. obj.myMethod(ch);
10. }
11. }Correct
Incorrect
-
Question 13 of 20
13. Question
If you want your conditional to depend on two conditions BOTH being true, what is the proper notation to put between the two Boolean statements ?
Correct
Incorrect
-
Question 14 of 20
14. Question
Which of the following means that in order for the conditional to happen, either x must be less than 3 or y must be greater than or equal to 4 ?
Correct
Incorrect
-
Question 15 of 20
15. Question
What is a function in terms of Computer Science ?
Correct
Incorrect
-
Question 16 of 20
16. Question
Which is NOT a section of all types of loops ?
Correct
Incorrect
-
Question 17 of 20
17. Question
What is a loop ?
Correct
Incorrect
-
Question 18 of 20
18. Question
In the following pieces of code, A and D will compile without any error. True/False?
A: StringBuffer sb1 = “abcd”;
B: Boolean b = new Boolean(“abcd”);
C: byte b = 255;
D: int x = 0x1234;
E: float fl = 1.2;Correct
Incorrect
-
Question 19 of 20
19. Question
What does AWT stands for ?
Correct
Incorrect
-
Question 20 of 20
20. Question
Which of the following collection classes from java.util package are Thread safe?
Correct
Incorrect