Ask a Question

What is the significant of "OPTION EXPLICIT"?PLZZZ Rply..

on 2013-03-05 14:32:23   by solanki   on BCA  1 answers

sanchayita

on 2013-03-06 10:30:00  

Use Option Explicit to avoid incorrectly typing the name of an existing variable or to avoid confusion in code where the scope of the variable is not clear. If you do not use the Option Explicit statement, all undeclared variables are of Object type.