InterviewSolution
Saved Bookmarks
| 1. |
Is Vbscript Case Sensitive? |
|
Answer» No! VBScript is a case-insensitive LANGUAGE. This means that language keywords, variables, function names and any other identifiers NEED NOT be TYPED with a consistent CAPITALIZATION of LETTERS. So identifiers int_counter, INT_Counter and INT_COUNTER have the same meaning within VBScript. No! VBScript is a case-insensitive language. This means that language keywords, variables, function names and any other identifiers need NOT be typed with a consistent capitalization of letters. So identifiers int_counter, INT_Counter and INT_COUNTER have the same meaning within VBScript. |
|