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 file extension of Webservices ?
.NET INTERVIEW QUESTIONS - What is file extension of Webservices ? The extension for Webservices is .ASMX. 2009-10-13, 4710👍, 0💬
What is === operator?
What is === operator? ==== is strict equality operator, it returns true only when the two operands are having the same value without any type conversion. 2008-12-09, 4706👍, 0💬
How to create an input box?
How to create an input box? prompt("What is your temperature?"); 2009-01-13, 4705👍, 0💬
How to create a confirmation box?
How to create a confirmation box? confirm("Do you really want to launch the missile?"); 2009-01-06, 4703👍, 0💬
Anything wrong with this code? T *p = 0; delete p;
Anything wrong with this code? T *p = 0; delete p; Yes, the program will crash in an attempt to delete a null pointer. 2012-03-05, 4698👍, 0💬
Can we force garbage collector to run
Can we force garbage collector to run ? System.GC.Collect() forces garbage collector to run. This is not recommended but can be used if situations arises. 2007-10-22, 4666👍, 0💬
How to comment JavaScript code?
How to comment JavaScript code? Use // for line comments and /* */ for block comments 2008-10-14, 4665👍, 0💬
Popular Posts:
What is CMM and different levels? explain? The Capability Maturity Model (CMM) is a process capabili...
In which event are the controls fully loaded ? Page_load event guarantees that all controls are full...
What is the main difference between a Vector and an ArrayList? Java Vector class is internally synch...
What is Windows DNA architecture? Note :- If you have worked with classic ASP this question can come...
Can an anonymous class be declared as implementing an interface and extending a class? An anonymous ...