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:
Why do threads block on I/O?
Why do threads block on I/O? Threads block on i/o (that is enters the waiting state) so that other threads may execute while the i/o Operation is performed. 2013-02-12, 2369👍, 0💬
What is the range of the short type?
What is the range of the short type? The range of the short type is -(2^15) to 2^15 - 1. 2012-10-15, 2368👍, 0💬
What is the Collections API?
What is the Collections API? The Collections API is a set of classes and interfaces that support operations on collections of objects. 2013-04-10, 2365👍, 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, 2364👍, 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, 2364👍, 0💬
What state does a thread enter when it terminates its processing?
What state does a thread enter when it terminates its processing? When a thread terminates its processing, it enters the dead state. 2013-04-09, 2363👍, 0💬
What an I/O filter?
What an I/O filter? An I/O filter is an object that reads from one stream and writes to another, usually altering the data in some way as it is passed from one stream to another. 2013-01-02, 2363👍, 0💬
What is the Vector class?
What is the Vector class? The Vector class provides the capability to implement a growable array of objects 2012-09-25, 2361👍, 0💬
Popular Posts:
What’s the difference between Unit testing, Assembly testing and Regression testing? Unit testing is...
What Happens If One Row Has Missing Columns? - XHTML 1.0 Tutorials - Understanding Tables and Table ...
What is the purpose of finalization? The purpose of finalization is to give an unreachable object th...
What will be printed as the result of the operation below: main() { char *p1; char *p2; p1=(char *)m...
What is the difference between "printf(...)" and "sprintf(...)"? sprintf(...) writes data to the cha...