In VBScript, constants are declared using the Const statement (e.g., Const PI = 3.14). Dim is for variables, Con is not a valid statement, and Option Explicit forces variable declaration but doesn't define constants. Once assigned, constants cannot be modified during script execution.