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 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, 2416👍, 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, 2414👍, 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, 2414👍, 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, 2412👍, 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, 2410👍, 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, 2407👍, 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, 2407👍, 0💬
Which Java operator is right associative?
Which Java operator is right associative? The = operator is right associative. 2012-10-24, 2406👍, 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, 2405👍, 0💬
Popular Posts:
What Articles Have You Read about JUnit? There are a number of JUnit articles that you should read: ...
The object that contains all the properties and methods for every ASP.NET page, that is built is .. ...
What is the difference between CALL_FORM, NEW_FORM and OPEN_FORM? CALL_FORM: start a new form and pa...
What is the difference between const char* p and char const* p? In const char* p, the character poin...
What print out will the folloging code produce? main() { char *p1=“name”; char *p2; p2=(char*)malloc...