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'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, 2337👍, 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, 2334👍, 0💬
What is the range of the char type?
What is the range of the char type? The range of the char type is 0 to 2^16 - 1. 2012-10-16, 2333👍, 0💬
Which Java operator is right associative?
Which Java operator is right associative? The = operator is right associative. 2012-10-24, 2332👍, 0💬
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, 2328👍, 0💬
Which containers use a FlowLayout as their default layout?
Which containers use a FlowLayout as their default layout? The Panel and Applet classes use the FlowLayout as their default layout. 2013-04-09, 2327👍, 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, 2326👍, 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, 2322👍, 0💬
Popular Posts:
How Many Tags Are Defined in HTML 4.01? There are 77 tags defined in HTML 4.01: a abbr acronym addre...
How you will enable front-end validation based on the xml in validation.xml? The <html:javascr...
Can each Java object keep track of all the threads that want to exclusively access to it?
What are the different storage classes in C? C has three types of storage: automatic, static and all...
What are unadjusted function points and how is it calculated? Unadjusted function points = ILF + EIF...