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:
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, 3004👍, 0💬
What is the two main roles of Operating System?
What is the two main roles of Operating System? As a resource manager As a virtual machine 2012-01-23, 3101👍, 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, 3129👍, 0💬
Write a Struct Time where integer m, h, s are its members
Write a Struct Time where integer m, h, s are its members struct Time { int m; int h; int s; }; 2012-01-20, 2884👍, 0💬
Name some pure object oriented languages. C++
Name some pure object oriented languages. C++ Smalltalk, Java, Eiffel, Sather. 2012-01-13, 2943👍, 0💬
Popular Posts:
What is hashing? To hash means to grind up, and that's essentially what hashing is all about. The he...
If we inherit a class do the private variables also get inherited ? Yes, the variables are inherited...
How To Write a Query with a Right Outer Join? - Oracle DBA FAQ - Understanding SQL SELECT Query Stat...
What does a well-written Object Oriented program look like? A well-written object oriented program e...
What will be printed as the result of the operation below: main() { int a=0; if (a==0) printf("Cisco...