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:
State True or False: ASP.NET can currently run only on Windows Platform: * True or * False?
State True or False: ASP.NET can currently run only on Windows Platform: * True or * False? True 2014-03-12, 3043👍, 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, 3030👍, 0💬
Where is applications start/stop scripts stored ?
Where is applications start/stop scripts stored ? applications start/stop scripts are in directory $COMMON_TOP/admin/scripts/$CON TEXT_NAME 2011-11-14, 3027👍, 0💬
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, 3023👍, 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, 3023👍, 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, 3022👍, 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, 3019👍, 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, 3004👍, 0💬
Popular Posts:
Advantages of a macro over a function? Macro gets to see the Compilation environment, so it can expa...
How did you implement UML in your project ? PART II Implementation phase / Coding phase (Class diagr...
Advantages of a macro over a function? Macro gets to see the Compilation environment, so it can expa...
How To Set session.gc_divisor Properly? - PHP Script Tips - Understanding and Using Sessions As you ...
How does one iterate through items and records in a specified block? One can use NEXT_FIELD to itera...