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 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, 2324👍, 0💬
What is the List interface?
What is the List interface? The List interface provides support for ordered collections of objects. 2013-04-02, 2322👍, 0💬
Are true and false keywords?
Are true and false keywords? The values true and false are not keywords. 2013-01-04, 2321👍, 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, 2321👍, 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, 2318👍, 0💬
What type of code (server or client) is found in a Code-Behind class?
What type of code (server or client) is found in a Code-Behind class? C# 2014-01-16, 2317👍, 0💬
Popular Posts:
What will be printed as the result of the operation below: main() { int x=10, y=15; x = x++; y = ++y...
WHat will be the result of the following code? #define TRUE 0 // some code while (TRUE) { // some co...
How do we get the current culture of the environment in windows and ASP.NET? “CultureInfo.CurrentCul. ..
What Tools to Use to View HTML Documents? The basic tool you need to view HTML documents is any Web ...
Which one of the following statements is TRUE in regard to overloading the ++ operator? 1 You cannot...