Home / CSE MCQs / C-MCQs :: Discussion

Discussion :: C-MCQs

  1. Which is false?
  2. A.
    Constant variables need not be defined as they are declared and can be defined later
    B.
    Global constant variables are initialised to zero
    C.
    const keyword is used to define constant values
    D.
    You cannot reassign a value to a constant variable

    View Answer

    Workspace

    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.


Be The First To Comment