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:
Name three Component subclasses that support painting.
Name three Component subclasses that support painting. The Canvas, Frame, Panel, and Applet classes support painting. 2012-10-04, 2375👍, 0💬
What is a layout manager?
What is a layout manager? A layout manager is an object that is used to organize components in a container. 2013-01-16, 2374👍, 0💬
What are wrapper classes?
What are wrapper classes? Wrapper classes are classes that allow primitive types to be accessed as objects. 2012-10-01, 2370👍, 0💬
What is the GregorianCalendar class?
What is the GregorianCalendar class? The GregorianCalendar provides support for traditional Western calendars. 2012-10-19, 2369👍, 0💬
Does a class inherit the constructors of its superclass?
Does a class inherit the constructors of its superclass? A class does not inherit constructors from any of its super classes. 2012-11-26, 2364👍, 0💬
What's the difference between a queue and a stack?
What's the difference between a queue and a stack? Stacks works by last-in-first-out rule (LIFO), while queues use the FIFO rule 2013-04-12, 2358👍, 0💬
What are E and PI?
What are E and PI? E is the base of the natural logarithm and PI is mathematical value pi. 2013-01-04, 2354👍, 0💬
What is the range of the char type?
What is the range of the char type? The range of the char type is 0 to 2^16 - 1. 2012-10-16, 2354👍, 0💬
Popular Posts:
1. What is normalization. 2. Difference between procedure and functions. 3. Oracle 9i Vs 10g. 4. how...
What does a special set of tags <?= and ?> do in a PHP script page? <?= express...
How do I install JUnit? First I will download the lastest version of JUnit. Then I will extract all ...
Can you tell me how to check whether a linked list is circular? Create two pointers, and set both to...
What is the benefit of using #define to declare a constant? Using the #define method of declaring a ...