Ask Question
27 February, 14:38

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

a) TRUE

b) FALSE

+5
Answers (1)
  1. 27 February, 15:11
    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?
Find 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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers