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 Java Virtual Machine?
What is the Java Virtual Machine? The Java Virtual Machine is a software that can be ported onto various hardware-based platforms. 2013-02-20, 2329👍, 0💬
What happens when you add a double value to a String?
What happens when you add a double value to a String? The result is a String object. 2013-01-08, 2327👍, 0💬
Which DLL translate XML to SQL in IIS?
Which DLL translate XML to SQL in IIS? Sqlisapi.dll 2013-12-23, 2326👍, 0💬
So can a COM object talk to a .NET object?
So can a COM object talk to a .NET object? Yes, through Runtime Callable Wrapper (RCW) or PInvoke. 2014-12-02, 2325👍, 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, 2325👍, 0💬
Is sizeof a keyword?
Is sizeof a keyword? The sizeof operator is not a keyword in Java. 2013-04-11, 2324👍, 0💬
Difference between Swing and Awt?
Difference between Swing and Awt? AWT are heavy-weight componenets. Swings are light-weight components. Hence swing works faster than AWT. 2013-04-26, 2323👍, 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, 2322👍, 0💬
Describe the principles of OOPS
Describe the principles of OOPS There are three main principals of oops which are called Polymorphism, Inheritance and Encapsulation. 2013-02-28, 2321👍, 0💬
What restrictions are placed on method overloading?
What restrictions are placed on method overloading? Two methods may not have the same name and argument list but different return types. 2013-04-01, 2319👍, 0💬
How are the elements of a GridLayout organized?
How are the elements of a GridLayout organized? The elements of a GridBad layout are of equal size and are laid out using the squares of a grid. 2013-01-01, 2319👍, 0💬
Popular Posts:
What are the five levels in CMMI? There are five levels of the CMM. According to the SEI, Level 1 – ...
How To Get the Uploaded File Information in the Receiving PHP Script? Once the Web server received t...
Can you explain duplex contracts in WCF? In duplex contracts when client initiates an operation the ...
What Is Posting? Posting is an event that writes Inserts, Updates and Deletes in the forms to the da...
What is Service Oriented architecture? “Services” are components which expose well defined interface...