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:
Infinite Loops
How can you write a loop indefinitely? Two examples are listed in the following code: for(;;) { ... } while(true) { ... } 2007-03-03, 7115👍, 0💬
What Is Posting
What Is Posting? Posting is an event that writes Inserts, Updates and Deletes in the forms to the database but not committing these transactions to the database. 2007-04-15, 7101👍, 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, 7074👍, 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, 7050👍, 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, 7036👍, 0💬
Popular Posts:
What is V model in testing? V model map’s the type of test to the stage of development in a project....
What is the difference between Class and structure’s ? Following are the key differences between the...
What Articles Have You Read about JUnit? There are a number of JUnit articles that you should read: ...
Can you explain Forms authentication in detail ? In old ASP if you where said to create a login page...
How do I debug thread ? This window is only seen when the program is running in debug mode. In windo...