Categories:
.NET (357)
C (330)
C++ (184)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (2)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
Describe Stacks and name a couple of places where stacks are useful.
Describe Stacks and name a couple of places where stacks are useful.
✍: Guest
A Stack is a linear structure in which insertions and deletions are always made at one end, called the top. This updating policy is called last in, first out (LIFO). It is useful when we need to check some syntex errors, such as missing parentheses.
2012-04-17, 3358👍, 0💬
Popular Posts:
What are the core functionalities in XML .NET framework? Can you explain in detail those functionali...
What exactly happens when ASPX page is requested from Browser? Note: - Here the interviewer is expec...
Managed Code and Unmanaged Code related ASP.NET - How do you hide Public .NET Classes and other publ...
What is the difference between delegate and events? ã Actually events use delegates in bottom. But ...
What will be printed as the result of the operation below: main() { int x=10, y=15; x = x++; y = ++y...