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:
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, 2392👍, 0💬
What are checked exceptions?
What are checked exceptions? Checked exception are those which the Java compiler forces you to catch. e.g. IOException are checked Exceptions. 2013-05-28, 2262👍, 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, 2334👍, 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, 2223👍, 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, 2282👍, 0💬
Popular Posts:
How can we know the number of days between two given dates in PHP? Simple arithmetic: <?php $...
What Is the Data Pump Import Utility? - Oracle DBA FAQ - Loading and Exporting Data Oracle Data Pump...
What does a well-written Object Oriented program look like? A well-written object oriented program e...
What are the types of variables x, y, y and u defined in the following code? #define Atype int* type...
If we have the following in a Java code: String s="abc"; String s2="abc"; Then what will be output o...