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 ENUM
What is ENUM ? It’s used to define constants. 2007-10-23, 6121👍, 0💬
What are queues and stacks
What are queues and stacks ? Queue is for first-in, first-out (FIFO) structures. Stack is for last-in, first-out (LIFO) structures. 2007-10-23, 5347👍, 0💬
Where are all .NET Collection classes located
Where are all .NET Collection classes located ? System.Collection namespace has all the collection classes available in .NET. 2007-10-23, 8231👍, 0💬
What does virtual keyword mean
What does virtual keyword mean ? They signify that method and property can be overridden. 2007-10-23, 6070👍, 0💬
Do interface have accessibility modifier
Do interface have accessibility modifier? All elements in Interface should be public. So by default all interface elements are public by default. 2007-10-23, 5770👍, 0💬
Can you prevent a class from overriding
Can you prevent a class from overriding ? If you define a class as “Sealed” in C# and “NotInheritable” in VB.NET you can not inherit the class any further. 2007-10-23, 7120👍, 0💬
Can we have shared events
Can we have shared events ? Yes, you can have shared event’s note only shared methods can raise shared events. 2007-10-23, 8597👍, 0💬
Do events have return type
Do events have return type ? No, events do not have return type. 2007-10-23, 8204👍, 0💬
Popular Posts:
How To Concatenate Two Character Strings? - MySQL FAQs - Introduction to SQL Basics If you want conc...
What is NullPointerException and how to handle it? When an object is not initialized, the default va...
How do you locate the first X in a string txt? A) txt.find('X'); B) txt.locate('X'); C) txt.indexOf(...
.NET INTERVIEW QUESTIONS - How to prevent my .NET DLL to be decompiled? By design .NET embeds rich M...
What Is the Difference between Formal Parameters and Actual Parameters? - Oracle DBA FAQ - Creating ...