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 is the argument type of a program's main() method?
What is the argument type of a program's main() method? A program's main() method takes an argument of the String[] type. 2012-10-24, 2489👍, 0💬
What is the difference between the String and StringBuffer classes?
What is the difference between the String and StringBuffer classes? String objects are constants. StringBuffer objects are not. 2012-11-06, 2487👍, 0💬
How to create custom exceptions?
How to create custom exceptions? Your class should extend class Exception, or some more specific type thereof. 2013-05-29, 2479👍, 0💬
Which containers may have a MenuBar?
Which containers may have a MenuBar? Frame 2012-10-30, 2477👍, 0💬
To what value is a variable of the String type automatically initialized
To what value is a variable of the String type automatically initialized The default value of a String type is null. 2012-10-10, 2477👍, 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, 2471👍, 0💬
Popular Posts:
How To Set session.gc_divisor Properly? - PHP Script Tips - Understanding and Using Sessions As you ...
How To Check the Oracle TNS Settings? - Oracle DBA FAQ - ODBC Drivers, DSN Configuration and ASP Con...
What are unadjusted function points and how is it calculated? Unadjusted function points = ILF + EIF...
How can you implement MVC pattern in ASP.NET? The main purpose using MVC pattern is to decouple the ...
Can you explain in brief how the ASP.NET authentication process works? ASP.NET does not run by itsel...