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 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, 2419👍, 0💬
Primitive data types are passed by reference or pass by value?
Primitive data types are passed by reference or pass by value? Primitive data types are passed by value. 2013-05-16, 2293👍, 0💬
What type of parameter passing does Java support?
What type of parameter passing does Java support? In Java the arguments are always passed by value . 2013-05-16, 2353👍, 0💬
Do I need to import java.lang package any time? Why ?
Do I need to import java.lang package any time? Why ? No. It is by default loaded internally by the JVM. 2013-05-09, 2248👍, 0💬
What if I write static public void instead of public static void?
What if I write static public void instead of public static void? Program compiles and runs properly. 2013-05-03, 2682👍, 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, 2458👍, 0💬
Popular Posts:
What is the benefit of using #define to declare a constant? Using the #define method of declaring a ...
How To Use "IF" Statements on Multiple Conditions? - Oracle DBA FAQ - Understanding PL/SQL Language ...
How To Create an Add-to-Netvibes Button on Your Website? - RSS FAQs - Adding Your Feeds to RSS News ...
How you will enable front-end validation based on the xml in validation.xml? The <html:javascr...
The object that contains all the properties and methods for every ASP.NET page, that is built is .. ...