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 looping structures are there in JavaScript?
What looping structures are there in JavaScript? for, while, do-while loops, but no foreach. 2008-09-30, 4947👍, 0💬
How about 2+5+8?
How about 2+5+"8"? Since 2 and 5 are integers, this is number arithmetic, since 8 is a string, it’s concatenation, so 78 is the result. 2008-09-16, 5246👍, 0💬
What is a prompt box?
What is a prompt box? A prompt box allows the user to enter input by providing a text box. 2008-09-03, 5125👍, 0💬
What does "1"+2+4 evaluate to?
What does "1"+2+4 evaluate to? Since "1" is a string, everything is a string, so the result is a string of "124". 2008-07-29, 6144👍, 0💬
What boolean operators does JavaScript support?
What boolean operators does JavaScript support? &&, || and ! 2008-07-29, 5466👍, 0💬
Popular Posts:
How many bits are used to represent Unicode, ASCII, UTF-16, and UTF-8 characters? Unicode requires 1...
How to set a cookie with the contents of a textbox ? Values stored in cookies may not have semicolon...
What is a measure in OLAP ? Measures are the key performance indicator that you want to evaluate. To...
Where Is the Submitted Form Data Stored? - PHP Script Tips - Processing Web Forms When a user submit...
What is the difference between "calloc(...)" and "malloc(...)"? 1. calloc(...) allocates a block of ...