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:
Conditional Statements
What will happen in these three cases? if (a=0) { //somecode } if (a==0) { //do something } if (a===0) { //do something } 2007-02-26, 7033👍, 0💬
Infinite Loops
How can you write a loop indefinitely? Two examples are listed in the following code: for(;;) { ... } while(true) { ... } 2007-03-03, 7021👍, 0💬
Overriding Defined Macros
How do you override a defined macro? You can use the #undef preprocessor directive to undefine (override) a previously defined macro. 2007-02-26, 7007👍, 0💬
Vector and ArrayList Classes
What is the main difference between a Vector and an ArrayList? Java Vector class is internally synchronized and ArrayList is not. 2007-03-03, 6984👍, 0💬
Can you prevent a class from overriding
Can you prevent a class from overriding ? If you define a class as “Sealed” in C# and “NotInheritable” in VB.NET you can not inherit the class any further. 2007-10-23, 6961👍, 0💬
Popular Posts:
Explain in detail the fundamental of connection pooling? When a connection is opened first time a co...
What Is the Data Pump Import Utility? - Oracle DBA FAQ - Loading and Exporting Data Oracle Data Pump...
What is Windows DNA architecture? Note :- If you have worked with classic ASP this question can come...
Where are cookies actually stored on the hard disk? This depends on the user's browser and OS. In th...
Is Session_End event supported in all session modes ? Session_End event occurs only in “Inproc mode”...