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:
Difference between Swing and Awt?
Difference between Swing and Awt? AWT are heavy-weight componenets. Swings are light-weight components. Hence swing works faster than AWT. 2013-04-26, 1843👍, 0💬
Difference between Vector and ArrayList?
Difference between Vector and ArrayList? Vector is synchronized whereas arraylist is not. 2013-04-26, 1856👍, 0💬
What is HashMap and Map?
What is HashMap and Map? Map is Interface and Hashmap is class that implements that. 2013-04-25, 1868👍, 0💬
What comes to mind when someone mentions a shallow copy in Java?
What comes to mind when someone mentions a shallow copy in Java? Object cloning. 2013-04-15, 2174👍, 0💬
What comes to mind when you hear about a young generation in Java?
What comes to mind when you hear about a young generation in Java? Garbage collection. 2013-04-14, 1985👍, 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, 1953👍, 0💬
Popular Posts:
How To Select an Oracle System ID (SID)? - Oracle DBA FAQ - Creating New Database Instance Manually ...
How To Create an Array in PL/SQL? - Oracle DBA FAQ - Introduction to PL/SQL If you want create an ar...
What Articles Have You Read about JUnit? There are a number of JUnit articles that you should read: ...
How To Get the Uploaded File Information in the Receiving PHP Script? Once the Web server received t...
What will be printed as the result of the operation below: main() { int x=10, y=15; x = x++; y = ++y...