Categories:
.NET (357)
C (330)
C++ (184)
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 method is used to specify a container's layout?
What method is used to specify a container's layout? The setLayout() method is used to specify a container's layout. 2013-04-08, 4804👍, 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, 4804👍, 0💬
How do I test my AJAX code?
How do I test my AJAX code? There is a port of JUnit for client-side JavaScript called JsUnit 2009-06-23, 4803👍, 0💬
How to create an input box?
How to create an input box? prompt("What is your temperature?"); 2009-01-13, 4784👍, 0💬
What is .NET 3.0
What is .NET 3.0? In one simple equation .NET 3.0 = .NET 2.0 + Windows Communication Foundation + Windows Presentation Foundation + Windows Workflow Foundation + Windows CardSpace. 2007-11-03, 4782👍, 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, 4781👍, 0💬
How to comment JavaScript code?
How to comment JavaScript code? Use // for line comments and /* */ for block comments 2008-10-14, 4741👍, 0💬
Popular Posts:
What is normalization? What are different types of normalization? It is set of rules that have been ...
Explain all parts of a deployment diagram? Package: It logically groups element of a UML model. Node...
What will be printed as the result of the operation below: main() { int x=20,y=35; x=y++ + x++; y= +...
How was XML handled during COM times? During COM it was done by using MSXML 4.0. So old languages li...
How To Build WHERE Criteria with Web Form Search Fields? - MySQL FAQs - Managing Tables and Running ...