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 are undefined and undeclared variables?
What are undefined and undeclared variables?
✍: Guest
Undeclared variables are those that are not declared in the program (do not exist at all), trying to read their values gives runtime error. But if undeclared variables are assigned then implicit declaration is done .
Undefined variables are those that are not assigned any value but are declared in the program. Trying to read such variables gives special value called undefined value.
2011-02-01, 3634👍, 0💬
Popular Posts:
What is COCOMO I, COCOMOII and COCOMOIII? In CD we have a complete free PDF tutorial of how to prepa...
What is shadowing ? When two elements in a program have same name, one of them can hide and shadow t...
How To Compile a JUnit Test Class? Compiling a JUnit test class is like compiling any other Java cla...
What is CodeDom? “CodeDom” is an object model which represents actually a source code. It is designe...
Can you explain in brief how the ASP.NET authentication process works? ASP.NET does not run by itsel...