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 is a compilation unit?
What is a compilation unit? A compilation unit is a Java source code file. 2013-01-11, 2202👍, 0💬
Which package is always imported by default?
Which package is always imported by default? The java.lang package is always imported by default. 2013-01-09, 2332👍, 0💬
What happens when you add a double value to a String?
What happens when you add a double value to a String? The result is a String object. 2013-01-08, 2326👍, 0💬
What is a void return type?
What is a void return type? A void return type indicates that a method does not return a value. 2013-01-07, 2308👍, 0💬
Are true and false keywords?
Are true and false keywords? The values true and false are not keywords. 2013-01-04, 2301👍, 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, 2400👍, 0💬
What is the Set interface?
What is the Set interface? The Set interface provides methods for accessing the elements of a finite mathematical set. Sets do not allow duplicate elements. 2013-01-03, 2426👍, 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, 2378👍, 0💬
How are the elements of a GridLayout organized?
How are the elements of a GridLayout organized? The elements of a GridBad layout are of equal size and are laid out using the squares of a grid. 2013-01-01, 2319👍, 0💬
What state is a thread in when it is executing?
What state is a thread in when it is executing? An executing thread is in the running state. 2012-12-31, 2291👍, 0💬
What Checkbox method allows you to tell if a Checkbox is checked?
What Checkbox method allows you to tell if a Checkbox is checked? getState() 2012-12-31, 2261👍, 0💬
Why are the methods of the Math class static?
Why are the methods of the Math class static? So they can be invoked as if they are a mathematical code library. 2012-12-28, 2271👍, 0💬
Popular Posts:
What is the FP per day in your current company?
What will be printed as the result of the operation below: main() { int x=10, y=15; x = x++; y = ++y...
.NET INTERVIEW QUESTIONS - How can you avoid deadlock in threading? A good and careful planning can ...
What will be printed as the result of the operation below: main() { int x=5; printf("%d,%d,%d\n",x,x. ..
What are the two kinds of comments in JSP and what's the difference between them? <%-- JSP Co...