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 Locale class?
What is the Locale class? The Locale class is used to tailor program output to the conventions of a particular geographic, political, or cultural region. 2012-07-09, 2600👍, 0💬
What is an abstract method?
What is an abstract method? An abstract method is a method whose implementation is deferred to a subclass. Or, a method that has no implementation. 2012-07-10, 2599👍, 0💬
Where are shared assemblies stored?
Where are shared assemblies stored? Global assembly cache. 2014-12-19, 2596👍, 0💬
What is the purpose of the System class?
What is the purpose of the System class? The purpose of the System class is to provide access to system resources. 2012-07-07, 2593👍, 0💬
What's the main difference between a Vector and an ArrayList?
What's the main difference between a Vector and an ArrayList? Java Vector class is internally synchronized and ArrayList is not. 2012-06-22, 2593👍, 0💬
Name Container classes
Name Container classes Window, Frame, Dialog, FileDialog, Panel, Applet, or ScrollPane 2013-04-02, 2584👍, 0💬
What is a native method?
What is a native method? A native method is a method that is implemented in a language other than Java. 2012-06-27, 2582👍, 0💬
How do you find the length of an array?
How do you find the length of an array? $@array 2013-09-11, 2581👍, 0💬
Popular Posts:
How To Dump the Contents of a Directory into an Array? - PHP Script Tips - Working with Directoris a...
What will be printed as the result of the operation below: main() { char *ptr = " Cisco Systems"; *p...
What is the benefit of using #define to declare a constant? Using the #define method of declaring a ...
Is Session_End event supported in all session modes ? Session_End event occurs only in “Inproc mode”...
How do you locate the first X in a string txt? A) txt.find('X'); B) txt.locate('X'); C) txt.indexOf(...