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:
How is rounding performed under integer division?
How is rounding performed under integer division? The fractional part of the result is truncated. This is known as rounding toward zero. 2012-11-14, 2811👍, 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, 2576👍, 0💬
Which class is extended by all other classes?
Which class is extended by all other classes? The Object class is extended by all other classes. 2012-11-12, 2323👍, 0💬
What is the difference between a Window and a Frame?
What is the difference between a Window and a Frame? The Frame class extends Window to define a main application window that can have a menu bar. 2012-11-09, 2327👍, 0💬
What is the % operator?
What is the % operator? It is referred to as the modulo or remainder operator. It returns the remainder of dividing the first operand by the second operand. 2012-11-09, 2330👍, 0💬
What is the Dictionary class?
What is the Dictionary class? The Dictionary class provides the capability to store key-value pairs. 2012-11-08, 2383👍, 0💬
What is the difference between the String and StringBuffer classes?
What is the difference between the String and StringBuffer classes? String objects are constants. StringBuffer objects are not. 2012-11-06, 2413👍, 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, 2562👍, 0💬
What are the high-level thread states?
What are the high-level thread states? The high-level thread states are ready, running, waiting, and dead. 2012-11-02, 2264👍, 0💬
What is an abstract method?
What is an abstract method? An abstract method is a method whose implementation is deferred to a subclass. 2012-11-01, 2464👍, 0💬
Popular Posts:
How do I use a scriptlet to initialize a newly instantiated bean? A jsp:useBean action may optionall...
How To Increment Dates by 1? - Oracle DBA FAQ - Understanding SQL Basics If you have a date, and you...
How To Compile a JUnit Test Class? Compiling a JUnit test class is like compiling any other Java cla...
How can you enable automatic paging in DataGrid ? Following are the points to be done in order to en...
How To Call a Sub Procedure? - Oracle DBA FAQ - Creating Your Own PL/SQL Procedures and Functions To...