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:
Difference between Vector and ArrayList?
Difference between Vector and ArrayList? Vector is synchronized whereas arraylist is not. 2013-04-26, 2254👍, 0💬
What is the List interface?
What is the List interface? The List interface provides support for ordered collections of objects. 2013-04-02, 2253👍, 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, 2251👍, 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, 2250👍, 0💬
Why do you use Perl?
Why do you use Perl? Perl is a powerful free interpreter. Perl is portable, flexible and easy to learn. 2013-08-21, 2250👍, 0💬
Are true and false keywords?
Are true and false keywords? The values true and false are not keywords. 2013-01-04, 2248👍, 0💬
Name the eight primitive Java types.
Name the eight primitive Java types. The eight primitive types are byte, char, short, int, long, float, double, and boolean. 2012-11-29, 2246👍, 0💬
Which Math method is used to calculate the absolute value of a number?
Which Math method is used to calculate the absolute value of a number? The abs() method is used to calculate absolute values. 2012-12-13, 2243👍, 0💬
Popular Posts:
How To Concatenate Two Character Strings? - MySQL FAQs - Introduction to SQL Basics If you want conc...
How to create arrays in JavaScript? We can declare an array like this var scripts = new Array(); We ...
How To Run a JUnit Test Class? A JUnit test class usually contains a number of test methods. You can...
Write down the equivalent pointer expression for referring the same element a[i][j][k][l]? a[i] == *...
How To Increment Dates by 1? - Oracle DBA FAQ - Understanding SQL Basics If you have a date, and you...