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, 5543👍, 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, 5537👍, 0💬
Which class does the remote object has to inherit
Which class does the remote object has to inherit ? All remote objects should inherit from System.MarshalbyRefObject. 2007-10-23, 5534👍, 0💬
Popular Posts:
Example of using Regular Expressions for syntax checking in JavaScript ... var re = new RegExp("^(&a...
How can a servlet refresh automatically if some new data has entered the database? You can use a cli...
WHat will be the result of the following code? #define TRUE 0 // some code while (TRUE) { // some co...
What does static variable mean? There are 3 main uses for static variables: If you declare within a ...
What are the different storage classes in C? C has three types of storage: automatic, static and all...