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:
Describe the principles of OOPS
Describe the principles of OOPS There are three main principals of oops which are called Polymorphism, Inheritance and Encapsulation. 2013-02-28, 2284👍, 0💬
What type of parameter passing does Java support?
What type of parameter passing does Java support? In Java the arguments are always passed by value . 2013-05-16, 2282👍, 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, 2282👍, 0💬
Is &&= a valid Java operator?
Is &&= a valid Java operator? No, it is not. 2012-11-29, 2282👍, 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, 2277👍, 0💬
Difference between Swing and Awt?
Difference between Swing and Awt? AWT are heavy-weight componenets. Swings are light-weight components. Hence swing works faster than AWT. 2013-04-26, 2270👍, 0💬
What restrictions are placed on method overloading?
What restrictions are placed on method overloading? Two methods may not have the same name and argument list but different return types. 2013-04-01, 2269👍, 0💬
What modifiers are allowed for methods in an Interface?
What modifiers are allowed for methods in an Interface? Only public and abstract modifiers are allowed for methods in interfaces. 2013-06-19, 2266👍, 0💬
Popular Posts:
How do you locate the first X in a string txt? A) txt.find('X'); B) txt.locate('X'); C) txt.indexOf(...
What is the difference between delegate and events? ã Actually events use delegates in bottom. But ...
What is more advisable to create a thread, by implementing a Runnable interface or by extending Thre...
.NET INTERVIEW QUESTIONS - What is Suspend and Resume in Threading ? It is Similar to Sleep and Inte...
What is the difference between "printf(...)" and "sprintf(...)"? sprintf(...) writes data to the cha...