Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is the Locale class?
What is the Locale class? The Locale class is used to tailor program output to the conventions of a particular geographic, political, or cultural region. 2012-07-09, 2517👍, 0💬
What is the purpose of the System class?
What is the purpose of the System class? The purpose of the System class is to provide access to system resources. 2012-07-07, 2501👍, 0💬
What is the purpose of the Runtime class?
What is the purpose of the Runtime class? The purpose of the Runtime class is to provide access to the Java runtime system. 2012-07-07, 2524👍, 0💬
What is the SimpleTimeZone class?
What is the SimpleTimeZone class? The SimpleTimeZone class provides support for a Gregorian calendar. 2012-07-04, 2379👍, 0💬
When should the method invokeLater()be used?
When should the method invokeLater()be used? This method is used to ensure that Swing components are updated through the event-dispatching thread. 2012-06-29, 2581👍, 0💬
How can you write a loop indefinitely?
How can you write a loop indefinitely? for(;;)--for loop; while(true)--always true, etc. 2012-06-27, 2411👍, 0💬
What is a native method?
What is a native method? A native method is a method that is implemented in a language other than Java. 2012-06-27, 2488👍, 0💬
Name Component subclasses that support painting?
Name Component subclasses that support painting? The Canvas, Frame, Panel, and Applet classes support painting. 2012-06-26, 2540👍, 0💬
What are wrapped classes?
What are wrapped classes? Wrapped classes are classes that allow primitive types to be accessed as objects. 2012-06-25, 2773👍, 0💬
What's the main difference between a Vector and an ArrayList?
What's the main difference between a Vector and an ArrayList? Java Vector class is internally synchronized and ArrayList is not. 2012-06-22, 2515👍, 0💬
Popular Posts:
.NET INTERVIEW QUESTIONS - What is the difference between thread and process? A thread is a path of ...
How To Avoid the Undefined Index Error? - PHP Script Tips - Processing Web Forms If you don't want y...
How To Use Subqueries with the IN Operator? - MySQL FAQs - SQL SELECT Statements with JOIN and Subqu...
Describe in detail Basic of SAO architecture of Remoting? For these types of questions interviewer e...
Does it matter in what order catch statements for FileNotFoundException and IOExceptipon are written...