Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
What's the main difference between a Vector and an ArrayList?
What's the main difference between a Vector and an ArrayList? Java Vector class is internally synchronized and ArrayList is not. 2012-06-22, 2218👍, 0💬
What is an abstract method?
What is an abstract method? An abstract method is a method whose implementation is deferred to a subclass. Or, a method that has no implementation. 2012-07-10, 2216👍, 0💬
Is Java a super set of JavaScript?
Is Java a super set of JavaScript? No. They are completely different. Some syntax may be similar. 2012-08-13, 2214👍, 0💬
What is thread?
What is thread? A thread is an independent path of execution in a system. 2012-06-07, 2213👍, 0💬
What is the purpose of the Runtime class?
What is the purpose of the Runtime class? The purpose of the Runtime class is to provide access to the Java runtime system. 2012-07-07, 2211👍, 0💬
Name primitive Java types.
Name primitive Java types. The primitive types are byte, char, short, int, long, float, double, and boolean. 2012-07-23, 2210👍, 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. 2012-09-20, 2205👍, 0💬
When a thread is created and started, what is its initial state?
When a thread is created and started, what is its initial state? A thread is in the ready state after it has been created and started. 2013-06-07, 2191👍, 0💬
Is the ternary operator written x : y ? z or x ? y : z ?
Is the ternary operator written x : y ? z or x ? y : z ? It is written x ? y : z. 2012-11-13, 2187👍, 0💬
Popular Posts:
What are the different storage classes in C? C has three types of storage: automatic, static and all...
.NET INTERVIEW QUESTIONS - Did VB6 support multi-threading ? While VB6 supports multiple single-thre...
How To Concatenate Two Character Strings? - MySQL FAQs - Introduction to SQL Basics If you want conc...
What will be printed as the result of the operation below: main() { int a=0; if (a==0) printf("Cisco...
How To Join a List of Keys with a List of Values into an Array? - PHP Script Tips - PHP Built-in Fun...