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, 2848👍, 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, 2613👍, 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, 2365👍, 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, 2374👍, 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, 2401👍, 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, 2429👍, 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, 2458👍, 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, 2607👍, 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, 2314👍, 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, 2508👍, 0💬
Popular Posts:
How Are Vertical Margins between Two Block Elements Collapsed? - CSS Tutorials - Understanding Multi...
.NET INTERVIEW QUESTIONS - What is the difference between thread and process? A thread is a path of ...
Write out a function that prints out all the permutations of a string. For example, abc would give y...
How To Join a List of Keys with a List of Values into an Array? - PHP Script Tips - PHP Built-in Fun...
The following variable is available in file1.c, who can access it? static int average; Answer: all t...