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 modifiers are allowed for methods in an Interface?
What modifiers are allowed for methods in an Interface? Only public and abstract modifiers are allowed for methods in interfaces. 2013-06-19, 2165👍, 0💬
What state is a thread in when it is executing?
What state is a thread in when it is executing? An executing thread is in the running state. 2012-12-31, 2165👍, 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, 2163👍, 0💬
What is the Map interface?
What is the Map interface? The Map interface replaces the JDK 1.1 Dictionary class and is used associate keys with values. 2012-11-26, 2162👍, 0💬
Difference between Vector and ArrayList?
Difference between Vector and ArrayList? Vector is synchronized whereas arraylist is not. 2013-04-26, 2160👍, 0💬
What type of code (server or client) is found in a Code-Behind class?
What type of code (server or client) is found in a Code-Behind class? C# 2014-01-16, 2158👍, 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, 2155👍, 0💬
Popular Posts:
Does it matter in what order catch statements for FileNotFoundException and IOExceptipon are written...
What CLASSPATH Settings Are Needed to Run JUnit? It doesn't matter if you run your JUnit tests from ...
How To Run a JUnit Test Class? A JUnit test class usually contains a number of test methods. You can...
What is the significance of Finalize method in .NET? .NET Garbage collector does almost all clean up...
How To Enter Characters as HEX Numbers? - MySQL FAQs - Introduction to SQL Basics If you want to ent...