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 HashMap and Map?
What is HashMap and Map? Map is Interface and Hashmap is class that implements that. 2013-04-25, 2145👍, 0💬
What is an Iterator interface?
What is an Iterator interface? The Iterator interface is used to step through the elements of a Collection. 2012-09-26, 2145👍, 0💬
What Checkbox method allows you to tell if a Checkbox is checked?
What Checkbox method allows you to tell if a Checkbox is checked? getState() 2012-12-31, 2143👍, 0💬
Is null a keyword?
Is null a keyword? The null value is not a keyword. 2013-02-14, 2142👍, 0💬
Why are the methods of the Math class static?
Why are the methods of the Math class static? So they can be invoked as if they are a mathematical code library. 2012-12-28, 2140👍, 0💬
Can an exception be rethrown?
Can an exception be rethrown? Yes, an exception can be rethrown. 2012-12-13, 2140👍, 0💬
What modifiers can be used with a local inner class?
What modifiers can be used with a local inner class? A local inner class may be final or abstract. 2012-12-11, 2140👍, 0💬
Can we define private and protected modifiers for variables in interfaces?
Can we define private and protected modifiers for variables in interfaces? Yes. 2013-02-05, 2139👍, 0💬
Explain the Inheritance principle.
Explain the Inheritance principle. Inheritance is the process by which one object acquires the properties of another object. 2013-03-01, 2138👍, 0💬
Can try statements be nested?
Can try statements be nested? Try statements may be tested. 2013-01-23, 2138👍, 0💬
Primitive data types are passed by reference or pass by value?
Primitive data types are passed by reference or pass by value? Primitive data types are passed by value. 2013-05-16, 2137👍, 0💬
Can an Interface be final?
Can an Interface be final? yes. 2013-02-04, 2135👍, 0💬
Can an abstract class be final?
Can an abstract class be final? An abstract class may not be declared as final. 2013-01-17, 2135👍, 0💬
How are the elements of a CardLayout organized?
How are the elements of a CardLayout organized? The elements of a CardLayout are stacked, one on top of the other, like a deck of cards. 2012-11-28, 2135👍, 0💬
Popular Posts:
How to set a cookie with the contents of a textbox ? Values stored in cookies may not have semicolon...
How can I enable session tracking for JSP pages if the browser has disabled cookies? We know that se...
What is the concept of XPOINTER? XPOINTER is used to locate data within XML document. XPOINTER can p...
Have you ever worked with Microsoft Application Blocks, if yes then which? Application Blocks are C#...
What is difference between Association, Aggregation and Inheritance relationships? In object oriente...