Ask Question
19 June, 10:05

A variable must have its type declared but it is not required to be initialized prior to first use.

a) TRUE

b) FALSE

+2
Answers (1)
  1. 19 June, 11:15
    0
    The correct answer for the given question is option (A).

    Explanation:

    variable are the storage area which value is change during the execution of program

    to declared any variable we use the following syntax

    datatype variablename;

    for example

    int a1; / / declared variable a1 of type integer

    a1=90; / / initialized variable a1

    To declared any variable it does not mendatory to intialized that vaiable at that time but when we using any variable it mendatory to intialized that variable.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “A variable must have its type declared but it is not required to be initialized prior to first use. a) TRUE b) FALSE ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers