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:
C question
What is the difference between: myObj *x = new myObj[100]; delete x; and myObj *x = new myObj[100]; delete [] x; 2009-07-16, 5542👍, 0💬
What are JavaScript data types?
What are JavaScript data types? Number, String, Boolean, Function, Object, Null, Undefined. 2008-04-22, 5542👍, 0💬
How to read and write a file using JavaScript?
How to read and write a file using JavaScript? I/O operations like reading or writing a file is not possible with client-side JavaScript. 2008-03-25, 5540👍, 0💬
What Is Row
What Is Row? - MySQL FAQs - Database Basics and Terminologies A row is a unit of data with related data items stored as one item in one column in a table. 2007-05-10, 5530👍, 0💬
Popular Posts:
What will be printed as the result of the operation below: main() { int x=20,y=35; x=y++ + x++; y= +...
Can we have static indexer in C# ? No.
How To Call a Sub Procedure? - Oracle DBA FAQ - Creating Your Own PL/SQL Procedures and Functions To...
In which event are the controls fully loaded ? Page_load event guarantees that all controls are full...
What is the difference between "calloc(...)" and "malloc(...)"? 1. calloc(...) allocates a block of ...