Categories:
.NET (357)
C (330)
C++ (184)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (2)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What Is invokeLater() Method
When should the method invokeLater() be used? This method is used to ensure that Swing components are updated through the event-dispatching thread. 2007-03-03, 7591👍, 0💬
Infinite Loops
How can you write a loop indefinitely? Two examples are listed in the following code: for(;;) { ... } while(true) { ... } 2007-03-03, 7361👍, 0💬
Native Method
What is a native method? A native method is a method that is implemented in a language other than Java. 2007-03-03, 6808👍, 0💬
Component Subclasses in Swing Package
Name Component subclasses that support painting? The Canvas, Frame, Panel, and Applet classes support painting. 2007-03-03, 6227👍, 0💬
Wrapped Classes
What are wrapped classes? Wrapped classes are classes that allow primitive types to be accessed as objects. 2007-03-03, 6233👍, 0💬
Vector and ArrayList Classes
What is the main difference between a Vector and an ArrayList? Java Vector class is internally synchronized and ArrayList is not. 2007-03-03, 7234👍, 0💬
Modifiers on Inner Classes
What modifiers may be used with an inner class that is a member of an outer class? A inner class may be declared as public, protected, private, static, final, or abstract. 2007-03-03, 5854👍, 0💬
Vector Class
What is the Vector class? The Vector class provides the capability to implement a growable array of objects 2007-03-03, 5301👍, 0💬
Inner Class Declared inside a Method
Can an inner class declared inside of a method access local variables of this method? It's possible if these variables are final. 2007-03-03, 5509👍, 0💬
States of a Thread
What are the high-level thread states? The high-level thread states are ready, running, waiting, and dead. 2007-03-03, 7604👍, 0💬
Popular Posts:
What will be printed as the result of the operation below: #define swap(a,b) a=a+b;b=a-b;a=a-b; void...
How To Increment Dates by 1? - Oracle DBA FAQ - Understanding SQL Basics If you have a date, and you...
How do we host a WCF service in IIS? Note: - The best to know how to host a WCF in IIS is by doing a...
How can we format data inside DataGrid? Use the DataFormatString property.
What is the benefit of using an enum rather than a #define constant? The use of an enumeration const...