Which is false? A. Constant variables need not be defined as they are declared and can be defined later B. You cannot reassign a value to a constant variable C. Global constant variables are initialized to zero D. const keyword is used to define constant values Answer Workspace Report Discuss Answer with explanation Answer: Option A Explanation Since the constant variable has to be declared and defined at the same time, not doing it results in an error. Hence the statement A is false. Workspace
Discuss about the question