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, 2258👍, 0💬
What restrictions are placed on method overloading?
What restrictions are placed on method overloading? Two methods may not have the same name and argument list but different return types. 2013-04-01, 2258👍, 0💬
What is the purpose of a statement block?
What is the purpose of a statement block? A statement block is used to organize a sequence of statements as a single statement group. 2013-01-24, 2252👍, 0💬
Which DLL translate XML to SQL in IIS?
Which DLL translate XML to SQL in IIS? Sqlisapi.dll 2013-12-23, 2251👍, 0💬
What are the high-level thread states?
What are the high-level thread states? The high-level thread states are ready, running, waiting, and dead. 2012-11-02, 2250👍, 0💬
What are checked exceptions?
What are checked exceptions? Checked exception are those which the Java compiler forces you to catch. e.g. IOException are checked Exceptions. 2013-05-28, 2249👍, 0💬
What is a void return type?
What is a void return type? A void return type indicates that a method does not return a value. 2013-01-07, 2248👍, 0💬
Popular Posts:
Rachel opened her math book and found that the sum of the facing pages was 245. What pages did she o...
What is test metrics? Test metrics accomplish in analyzing the current level of maturity in testing ...
when should the volatile modifier be used? The volatile modifier is a directive to the compiler's op...
How can I implement a variable field width with printf? That is, instead of something like %8d, I wa...
Can you explain duplex contracts in WCF? In duplex contracts when client initiates an operation the ...