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 (2)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is an application object ?
.NET INTERVIEW QUESTIONS - What is an application object ? Application object can be used in situation where we want data to be shared across users globally. 2009-04-21, 4516👍, 0💬
About listing of the process
how to write a .c program in unix ,like I want to list the process information when I give the process id. 2010-04-07, 4461👍, 0💬
What is negative infinity?
What is negative infinity? It’s a number in JavaScript, derived by dividing negative number by zero. 2010-08-10, 4431👍, 0💬
How to put a "close window" link on a page?
How to put a "close window" link on a page? <a href='javascript:window.close( )'class='mainnav'> Close </a> 2010-11-30, 4407👍, 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". 2010-09-28, 4399👍, 0💬
In the H file you see the following declaration
In the H file you see the following declaration: class Foo { void Bar( void ) const ; }; Tell me all you know about the Bar() function. 2012-05-14, 4398👍, 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. 2010-11-16, 4373👍, 0💬
Popular Posts:
How To Specify Two Background Images on a Page? - CSS Tutorials - Page Layout and Background Image D...
Can you explain in brief how can we implement threading ? Private Sub Form1_Load(ByVal sender As Sys...
How do you override a defined macro? You can use the #undef preprocessor directive to undefine (over...
.NET INTERVIEW QUESTIONS - What are Daemon threads and how can a thread be created as Daemon? Daemon...
How To Add Column Headers to a Table? - XHTML 1.0 Tutorials - Understanding Tables and Table Cells I...