Toggle navigation
online test
Core Java
JDBC
Servlet
JSP
Php
Aptitude
Html
Javascript/Jquery
C
Asp .net
C# .net
tutorials
Posts
Core Java
Jdbc
Servlet
Jsp
interview questions
C
Java
Php
.Net
Html
HR
faq's
C
Java
Php
.Net
Html
Videos
More
Downloads
Get Result
Contact Us
Downloads
Get Result
Contact Us
FAQ's Questions
C FAQ's Questions
JAVA FAQ's Questions
PHP FAQ's Questions
.Net FAQ's Questions
HTML FAQ's Questions
Java Faq's
Ques :
What's new with the stop(), suspend() and resume() methods in JDK 1.2?
The stop(), suspend() and resume() methods have been deprecated in JDK 1.2.
Ques :
Is null a keyword?
The null value is not a keyword.
Ques :
What is the preferred size of a component?
The preferred size of a component is the minimum component size that will allow the
component to display normally.
Ques :
What method is used to specify a container's layout?
The setLayout() method is used to specify a container's layout.
Ques :
Which containers use a FlowLayout as their default layout?
The Panel and Applet classes use the FlowLayout as their default layout.
Ques :
What state does a thread enter when it terminates its processing?
When a thread terminates its processing, it enters the dead state.
Ques :
What is the Collections API?
The Collections API is a set of classes and interfaces that support operations on collections of objects.
Ques :
Which characters may be used as the second character
of an identifier, but not as the first character of an identifier?
The digits 0 through 9 may not be used as the first character of an identifier but they may be used after the first character of an identifier.
Ques :
What is the List interface?
The List interface provides support for ordered collections of objects.
Ques :
How does Java handle integer overflows and underflows?
It uses those low order bytes of the result that can fit into the size of the type allowed by the operation.
1
2
3
4
5