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, 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, 2583👍, 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, 2572👍, 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, 2569👍, 0💬
What comes to mind when someone mentions a shallow copy in Java?
What comes to mind when someone mentions a shallow copy in Java? Object cloning. 2013-04-15, 2569👍, 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, 2569👍, 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, 2555👍, 0💬
Is null a keyword?
Is null a keyword? The null value is not a keyword. 2012-09-18, 2550👍, 0💬
Popular Posts:
Which JavaScript file is referenced for validating the validators at the client side ? WebUIValidati...
What is a measure in OLAP ? Measures are the key performance indicator that you want to evaluate. To...
Why does malloc(0) return valid memory address? What's the use? malloc(0) does not return a non-NULL...
How Can we change priority & what levels of priority are provided by Dot Net? Thread Priority ca...
.NET INTERVIEW QUESTIONS - What are Daemon threads and how can a thread be created as Daemon? Daemon...