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 do you mean by binding of data and functions?
What do you mean by binding of data and functions? Encapsulation. 2012-02-16, 2956👍, 0💬
Is C an object-oriented language?
Is C an object-oriented language? C is not an object-oriented language, but limited object-oriented programming can be done in C. 2012-04-10, 2951👍, 0💬
In the derived class, which data member of the base class are visible?
In the derived class, which data member of the base class are visible? In the public and protected sections. 2012-01-23, 2931👍, 0💬
What problems might the following macro bring to the application?
What problems might the following macro bring to the application? #define sq(x) x*x 2012-03-02, 2908👍, 0💬
What is a scope resolution operator?
What is a scope resolution operator? A scope resolution operator (::), can be used to define the member functions of a class outside the class. 2012-02-23, 2906👍, 0💬
Popular Posts:
What will be printed as the result of the operation below: main() { int x=10, y=15; x = x++; y = ++y...
How do I force the Dispose method to be called automatically, as clients can forget to call Dispose ...
How does one iterate through items and records in a specified block? One can use NEXT_FIELD to itera...
How do we enable SQL Cache Dependency in ASP.NET 2.0? Below are the broader steps to enable a SQL Ca...
How To Enter Binary Numbers in SQL Statements? - MySQL FAQs - Introduction to SQL Basics If you want...