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:
Does a class inherit the constructors of its superclass?
Does a class inherit the constructors of its superclass? A class does not inherit constructors from any of its superclasses. 2012-07-20, 2813👍, 0💬
What is the immediate superclass of the Dialog class?
What is the immediate superclass of the Dialog class? Window. 2012-10-05, 2807👍, 0💬
Write a Struct Time where integer m, h, s are its members
Write a Struct Time where integer m, h, s are its members struct Time { int m; int h; int s; }; 2012-01-20, 2804👍, 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. 2012-09-14, 2793👍, 0💬
How can you debug failed assembly binds?
How can you debug failed assembly binds? Use the Assembly Binding Log Viewer (fuslogvw.exe) to find out the paths searched. 2014-12-19, 2779👍, 0💬
How is rounding performed under integer division?
How is rounding performed under integer division? The fractional part of the result is truncated. This is known as rounding toward zero. 2012-11-14, 2778👍, 0💬
Interview question
Have you ever worked without salary? 2020-02-20, 2777👍, 0💬
Popular Posts:
.NET INTERVIEW QUESTIONS - What is COM ? Microsoft’s COM is a technology for component software deve...
How Many Types of Tables Supported by Oracle? - Oracle DBA FAQ - Managing Oracle Database Tables Ora...
What is the sequence of UML diagrams in project? First let me say some fact about this question, you...
What is the difference between "printf(...)" and "sprintf(...)"? sprintf(...) writes data to the cha...
How did you implement UML in your project ? PART II Implementation phase / Coding phase (Class diagr...