Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
Name primitive Java types.
Name primitive Java types. The primitive types are byte, char, short, int, long, float, double, and boolean. 2012-07-23, 2210👍, 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 superclasses. 2012-07-20, 2416👍, 0💬
What is the Map interface?
What is the Map interface? The Map interface replaces the JDK 1.1 Dictionary class and is used associate keys with values. 2012-07-20, 2287👍, 0💬
What are peerless components?
What are peerless components? The peerless components are called light weight components. 2012-07-17, 2811👍, 0💬
What is the difference between a Window and a Frame?
What is the difference between a Window and a Frame? The Frame class extends Window to define a main application window that can have a menu bar. 2012-07-13, 2140👍, 0💬
What is a protected method?
What is a protected method? A protected method is a method that can be accessed by any method in its package and inherited by any subclass of its class. 2012-07-11, 2231👍, 0💬
What is an abstract method?
What is an abstract method? An abstract method is a method whose implementation is deferred to a subclass. Or, a method that has no implementation. 2012-07-10, 2216👍, 0💬
Popular Posts:
What is DAR (Decision Analysis and Resolution) ? Decision Analysis and Resolution is to analyze poss...
What Are Named Parameters? - Oracle DBA FAQ - Creating Your Own PL/SQL Procedures and Functions Name...
What is the difference between Session State and ViewState? ViewState is specific to a page in a ses...
How To Specify Two Background Images on a Page? - CSS Tutorials - Page Layout and Background Image D...
How can you write a loop indefinitely? Two examples are listed in the following code: for(;;) { ... ...