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's the difference between a queue and a stack?
What's the difference between a queue and a stack? Stacks works by last-in-first-out rule (LIFO), while queues use the FIFO rule 2013-04-12, 2265👍, 0💬
What is serialization?
What is serialization? Serialization is a mechanism by which you can save the state of an object by converting it to a byte stream. 2013-05-17, 2261👍, 0💬
What if the main method is declared as private?
What if the main method is declared as private? The program compiles properly but at runtime it will give "Main method not public." message. 2013-05-02, 2255👍, 0💬
Which class is the immediate superclass of the MenuComponent class.
Which class is the immediate superclass of the MenuComponent class. Object 2012-10-17, 2254👍, 0💬
What is the range of the short type?
What is the range of the short type? The range of the short type is -(2^15) to 2^15 - 1. 2012-10-15, 2250👍, 0💬
What is the return type of a program's main() method?
What is the return type of a program's main() method? A program's main() method has a void return type. 2012-12-21, 2249👍, 0💬
Popular Posts:
when should the volatile modifier be used? The volatile modifier is a directive to the compiler's op...
How do you locate the first X in a string txt? A) txt.find('X'); B) txt.locate('X'); C) txt.indexOf(...
How to measure functional software requirement specification (SRS) documents? Well, we need to defin...
Can you explain what is “AutoPostBack” feature in ASP.NET ? If we want the control to automatically ...
What will happen in these three cases? if (a=0) { //somecode } if (a==0) { //do something } if (a===...