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💬
Can a Byte object be cast to a double value?
Can a Byte object be cast to a double value? No, an object cannot be cast to a primitive value. 2012-11-05, 2583👍, 0💬
Popular Posts:
What is the difference between const char* p and char const* p? In const char* p, the character poin...
Which bit wise operator is suitable for turning on a particular bit in a number? The bitwise OR oper...
How do I force the Dispose method to be called automatically, as clients can forget to call Dispose ...
How do we host a WCF service in IIS? Note: - The best to know how to host a WCF in IIS is by doing a...
How To Return the Second 5 Rows? - MySQL FAQs - SQL SELECT Statements with JOIN and Subqueries If yo...