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 ENUM
What is ENUM ? It’s used to define constants. 2007-10-23, 5640👍, 0💬
Component Subclasses in Swing Package
Name Component subclasses that support painting? The Canvas, Frame, Panel, and Applet classes support painting. 2007-03-03, 5634👍, 0💬
Is XML case sensitive
Is XML case sensitive? Yes, they are case sensitive. 2007-10-31, 5633👍, 0💬
What does "1"+2+4 evaluate to?
What does "1"+2+4 evaluate to? Since "1" is a string, everything is a string, so the result is a string of "124". 2008-07-29, 5622👍, 0💬
Acquiring Locks on Classes
Can a lock be acquired on a class? Yes, a lock can be acquired on a class. This lock is acquired on the class's Class object. 2007-03-03, 5619👍, 0💬
Do session use cookies
How can we make session to not to use cookies ? Left to the user, you will enjoy to find this answer. 2007-10-24, 5617👍, 0💬
What are the major differences between services and Web services
What are the major differences between services and Web services? 2007-11-04, 5615👍, 0💬
Popular Posts:
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 was XML handled during COM times? During COM it was done by using MSXML 4.0. So old languages li...
How To Run a JUnit Test Class? A JUnit test class usually contains a number of test methods. You can...
How To Use mysqlbinlog to View Binary Logs? - MySQL FAQs - Server Daemon mysqld Administration If yo...
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...