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, 2314👍, 0💬
What are E and PI?
What are E and PI? E is the base of the natural logarithm and PI is mathematical value pi. 2013-01-04, 2314👍, 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, 2312👍, 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, 2312👍, 0💬
What is serialization?
What is serialization? Serialization is a mechanism by which you can save the state of an object by converting it to a byte stream. 2013-05-17, 2308👍, 0💬
What's the difference between a queue and a stack?
What's the difference between a queue and a stack? Stacks works by last-in-first-out rule (LIFO), while queues use the FIFO rule 2013-04-12, 2307👍, 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, 2306👍, 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, 2306👍, 0💬
Which class is the immediate superclass of the MenuComponent class.
Which class is the immediate superclass of the MenuComponent class. Object 2012-10-17, 2303👍, 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, 2302👍, 0💬
To what value is a variable of the boolean type automatically initialized?
To what value is a variable of the boolean type automatically initialized? The default value of the boolean type is false. 2013-01-22, 2301👍, 0💬
Popular Posts:
How To Get the Uploaded File Information in the Receiving PHP Script? Once the Web server received t...
How to reduce the final size of an executable file? Size of the final execuatable can be reduced usi...
What is Native Image Generator (Ngen.exe)? The Native Image Generator utility (Ngen.exe) allows you ...
How To Enter Microseconds in SQL Statements? - MySQL FAQs - Introduction to SQL Date and Time Handli...
1. What is normalization. 2. Difference between procedure and functions. 3. Oracle 9i Vs 10g. 4. how...