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 === 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. 2011-02-01, 3886👍, 0💬
How will you find Invalid Objects in database ?
How will you find Invalid Objects in database ? using query SQLPLUS> select count(*) from dba_objects where status like 'INVALID'; 2011-12-27, 3885👍, 0💬
What is the data types of variables of in JavaScript?
What is the data types of variables of in JavaScript? Number, String, Boolean, Function, Object, Null, Undefined. 2010-08-17, 3872👍, 0💬
How to comment JavaScript code?
How to comment JavaScript code? Use // for line comments and /* */ for block comments 2010-12-07, 3861👍, 0💬
What are various joins used while writing SUBQUERIES?
What are various joins used while writing SUBQUERIES? =, , IN, NOT IN, IN ANY, IN ALL, EXISTS, NOT EXISTS. 2011-12-23, 3847👍, 0💬
Is Empty .java file a valid source file?
Is Empty .java file a valid source file? Yes, an empty .java file is a perfectly valid source file. 2013-06-21, 3839👍, 0💬
Popular Posts:
Can Two Forms Be Nested? - XHTML 1.0 Tutorials - Understanding Forms and Input Fields Can two forms ...
How to set a cookie with the contents of a textbox ? Values stored in cookies may not have semicolon...
What is triple constraint triangle in project management ? Project Management triangle is depicted a...
Can each Java object keep track of all the threads that want to exclusively access to it?
How To Set session.gc_divisor Properly? - PHP Script Tips - Understanding and Using Sessions As you ...