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 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, 2615👍, 0💬
Name Container classes
Name Container classes Window, Frame, Dialog, FileDialog, Panel, Applet, or ScrollPane 2013-04-02, 2611👍, 0💬
What if I write static public void instead of public static void?
What if I write static public void instead of public static void? Program compiles and runs properly. 2013-05-03, 2606👍, 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, 2606👍, 0💬
Is "abc" a primitive value?
Is "abc" a primitive value? The String literal "abc" is not a primitive value. It is a String object. 2012-12-03, 2600👍, 0💬
Is the ternary operator written x : y ? z or x ? y : z ?
Is the ternary operator written x : y ? z or x ? y : z ? It is written x ? y : z. 2012-11-13, 2599👍, 0💬
Popular Posts:
What will be printed as the result of the operation below: main() { char s1[]="Cisco"; char s2[]="sy...
What is the quickest sorting method to use? The answer depends on what you mean by quickest. For mos...
Which are the various programming approaches for WCF?
What print out will the folloging code produce? main() { char *p1=“name”; char *p2; p2=(char*)malloc...
Can you prevent a class from overriding ? If you define a class as “Sealed” in C# and “NotInheritab...