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:
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, 4625👍, 0💬
How to create an input box?
How to create an input box? prompt("What is your temperature?"); 2009-01-13, 4623👍, 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, 4619👍, 0💬
How many JSP scripting elements and what are they?
How many JSP scripting elements and what are they? There are three scripting language elements: --declarations --scriptlets --expressions 2016-06-25, 4606👍, 1💬
💬 2016-06-25 saidesh: Jsp scripting elements are three types: Declaration, Expression, Scriptlet.
What is file extension of Webservices ?
.NET INTERVIEW QUESTIONS - What is file extension of Webservices ? The extension for Webservices is .ASMX. 2009-10-13, 4602👍, 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, 4598👍, 0💬
How to comment JavaScript code?
How to comment JavaScript code? Use // for line comments and /* */ for block comments 2008-10-14, 4562👍, 0💬
dot net qstn
How would ASP and ASP.NET apps run at the same time on the same server? 2010-07-29, 4551👍, 0💬
Popular Posts:
What is the result of using Option Explicit? When writing your C program, you can include files in t...
How To Compare Two Strings with strcmp()? - PHP Script Tips - PHP Built-in Functions for Strings PHP...
Can you explain steps in function points? Below are the steps in function points: >First Count ILF, ...
What Are the Parameter Modes Supported by PL/SQL? - Oracle DBA FAQ - Creating Your Own PL/SQL Proced...
How Many Types of Tables Supported by Oracle? - Oracle DBA FAQ - Managing Oracle Database Tables Ora...