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:
Incremental Operatiors
What will be printed as the result of the operation below: main() { int x=10, y=15; x = x++; y = ++y; printf("%d %d\n",x,y); } Answer: 11, 16 2007-02-26, 6434👍, 0💬
Incremental Operatos
What will be printed as the result of the operation below: main() { int x=20,y=35; x=y++ + x++; y= ++y + ++x; printf("%d%d\n",x,y); } Answer : 5794 2007-02-26, 6430👍, 0💬
Wha is the output from System.out.println("Hello"+null);?
Wha is the output from System.out.println("Hello"+nul l);?Hellonull 2012-09-14, 6425👍, 0💬
What Is Posting
What Is Posting? Posting is an event that writes Inserts, Updates and Deletes in the forms to the database but not committing these transactions to the database. 2007-04-15, 6425👍, 0💬
How do you open an SSH connection to a remote box?
How do you open an SSH connection to a remote box? ???? 2009-07-20, 6416👍, 0💬
States of a Thread
What are the high-level thread states? The high-level thread states are ready, running, waiting, and dead. 2007-03-03, 6373👍, 0💬
Popular Posts:
What is test metrics? Test metrics accomplish in analyzing the current level of maturity in testing ...
How does ASP.NET maintain state in between subsequent request ? Refer caching chapter.
Can you explain different software development life cycles -part II? Water Fall Model This is the ol...
What does AddressOf operator do in background ? The AddressOf operator creates a delegate object to ...
How do we create DCOM object in VB6? Using the CreateObject method you can create a DCOM object. You...