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, 7054👍, 0💬
Infinite Loops
How can you write a loop indefinitely? Two examples are listed in the following code: for(;;) { ... } while(true) { ... } 2007-03-03, 7042👍, 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, 7027👍, 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, 6998👍, 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, 6990👍, 0💬
Popular Posts:
What is the output of printf("%d")? 1. When we write printf("%d",x); this means compiler will print ...
What Is C Language? The C programming language is a standardized programming language developed in t...
What is hashing? To hash means to grind up, and that's essentially what hashing is all about. The he...
What is V model in testing? V model map’s the type of test to the stage of development in a project....
How to set a HTML document's background color? document.bgcolor property can be set to any appropria...