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 multi-threading?
What is multi-threading? Multi-threading means various threads that run in a system. 2012-06-08, 2763👍, 0💬
Convert Windows login to SQL login
how will you convert windows authentication mode to sql server mode? 2014-09-15, 2762👍, 0💬
Name two subclasses of the TextComponent class.
Name two subclasses of the TextComponent class. TextField and TextArea 2012-10-29, 2757👍, 0💬
Can we implement an interface in a JSP?
Can we implement an interface in a JSP? No 2013-08-10, 2751👍, 0💬
When should the method invokeLater()be used?
When should the method invokeLater()be used? This method is used to ensure that Swing components are updated through the event-dispatching thread. 2012-06-29, 2747👍, 0💬
Can a lock be acquired on a class?
Can a lock be acquired on a class? Yes, a lock can be acquired on a class. This lock is acquired on the class's Class object. 2012-06-05, 2742👍, 0💬
Popular Posts:
How can we know the number of days between two given dates in PHP? Simple arithmetic: <?php $...
.NET INTERVIEW QUESTIONS - What is COM ? Microsoft’s COM is a technology for component software deve...
Can static variables be declared in a header file? You can't declare a static variable without defin...
What is Native Image Generator (Ngen.exe)? The Native Image Generator utility (Ngen.exe) allows you ...
What is the output of printf("%d")? 1. When we write printf("%d",x); this means compiler will print ...