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, 3114👍, 0💬
What is an object? C++
What is an object? C++ Object is a software bundle of variables and related methods. Objects have state and behavior. 2012-02-08, 3111👍, 0💬
What are the differences between a C++ struct and C++ class?
What are the differences between a C++ struct and C++ class? The default member and base-class access specifiers are different. 2012-03-13, 3097👍, 0💬
Are there any new intrinsic (built-in) data types?
Are there any new intrinsic (built-in) data types? Yes. The ANSI committee added the bool intrinsic type and its true and false value keywords. 2012-03-23, 3092👍, 0💬
How do you traverse a Btree in Backward in-order?
How do you traverse a Btree in Backward in-order? Process the node in the right subtree Process the root Process the node in the left subtree 2012-01-20, 3090👍, 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, 3088👍, 0💬
Popular Posts:
What is ISO? ISO 9000 is a family of standards for quality management systems. ISO 9000 is maintaine...
What is PMP(project management plan)? The project management plan is a document that describes the p...
What is Windows DNA architecture? Note :- If you have worked with classic ASP this question can come...
Do You Know the Book "JUnit in Action"? You should know this book. It received some good reviews. Ti...
How To Return the Second 5 Rows? - MySQL FAQs - SQL SELECT Statements with JOIN and Subqueries If yo...