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 a mutable member? C++
What is a mutable member? C++ One that can be modified by the class even when the object of the class or the member function doing the modification is const. 2012-03-20, 2764👍, 0💬
What are 2 ways of exporting a function from a DLL?
What are 2 ways of exporting a function from a DLL? 1.Taking a reference to the function from the DLL instance. 2. Using the DLL ’s Type Library 2012-02-17, 2764👍, 0💬
What is a conversion constructor C++?
What is a conversion constructor C++? A constructor that accepts one argument of a different type. 2012-03-16, 2753👍, 0💬
What is abstraction? C++
What is abstraction? C++ Abstraction is of the process of hiding unwanted details from the user. 2012-02-22, 2743👍, 0💬
Popular Posts:
How to create arrays in JavaScript? We can declare an array like this var scripts = new Array(); We ...
Which is the best place to store ConnectionString in Dot Net Projects? I am about to deploy my first...
What is the difference between RegisterClientScriptBloc kand RegisterStartupScript? RegisterClientSc...
How do we get the current culture of the environment in windows and ASP.NET? “CultureInfo.CurrentCul. ..
How can we implement singleton pattern in .NET? Singleton pattern mainly focuses on having one and o...