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:
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, 6272👍, 0💬
Server Push and Refresh
How can a servlet refresh automatically if some new data has entered the database? You can use a client-side Refresh or Server Push. 2007-04-03, 6267👍, 0💬
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, 6262👍, 0💬
How can we suppress a finalize method
How can we suppress a finalize method? GC.SuppressFinalize () 2007-10-23, 6158👍, 0💬
Popular Posts:
.NET INTERVIEW QUESTIONS - What is COM ? Microsoft’s COM is a technology for component software deve...
Have you ever worked with Microsoft Application Blocks, if yes then which? Application Blocks are C#...
What will be printed as the result of the operation below: main() { int x=5; printf("%d,%d,%d\n",x,x. ..
How many types of validation controls are provided by ASP.NET ? There are six main types of validati...
.NET INTERVIEW QUESTIONS - How can you avoid deadlock in threading? A good and careful planning can ...