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, 2868👍, 0💬
What is the purpose of the File class?
What is the purpose of the File class? The File class is used to create objects that provide access to the files and directories of a local file system. 2012-07-27, 2844👍, 0💬
Is Iterator a Class or Interface? What is its use?
Is Iterator a Class or Interface? What is its use? Iterator is an interface which is used to step through the elements of a Collection. 2012-05-23, 2825👍, 0💬
When a thread blocks on I/O, what state does it enter?
When a thread blocks on I/O, what state does it enter? A thread enters the waiting state when it blocks on I/O. 2012-10-10, 2815👍, 0💬
What is a transient variable?
What is a transient variable? A transient variable is a variable that may not be serialized. 2012-09-13, 2814👍, 0💬
Popular Posts:
What are the two kinds of comments in JSP and what's the difference between them? <%-- JSP Co...
What does XmlValidatingReader class do? XmlTextReader class does not validate the contents of an XML...
How To Assign Query Results to Variables? - Oracle DBA FAQ - Working with Database Objects in PL/SQL...
How can I include comments in HTML? An HTML comment begins with "<!--", ends with "-->...
What does a special set of tags <?= and ?> do in a PHP script page? <?= express...