×
Login Or SignUp
Privacy Policy
Terms Of Service
freetests4u.com
Online Knowledge Sharing Platform
Login/SignUp
freetests4u.com
Blogs
Mock Tests
Videos
Jobs
31 .
java.util.Hashtable implement which of the following??
A.
Java.util.Collection
B.
Java.util.Map
C.
Java.util.List
D.
Java.util.HashTable
View Answer
Ans: Java.util.Map
32 .
What is default value of the local Variable ?
A.
0
B.
Garbage
C.
Error
D.
None of these
View Answer
Ans: None of these
33 .
Which of these is a mechanism for naming and visibility control of class and its content ?
A.
Object
B.
Packages
C.
Interfaces
D.
None of the above
View Answer
Ans: Packages
34 .
Which of the following conversion is valid conversion in narrowing ?
A.
char to int
B.
float to long
C.
long to double
D.
short to int
View Answer
Ans: float to long
35 .
What is the stored in the object obj in following lines of code?
box obj;
A.
Memory address of allocated memory of object.
B.
Garbage View
C.
Any arbitrary pointer
D.
0 (NULL)
View Answer
Ans: 0 (NULL)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17