Ask Question

Which of these are characteristics of variables? Check all that apply. a. Variables can be local or global. b. Variables cannot be changed. c. Variables have keys and values within brackets [ ]. d. Variables have connected sets of characters. e. Variables have names, extents, and scopes.

+3
Answers (2)
  1. 5 August, 18:13
    0
    a and e i just answered the same question
  2. 5 August, 18:16
    0
    A and E for sure,

    C and D, depends on the language and on what you learned, because question isn't clear.

    Explanation:

    Variables are a central part of any programming, because that allows your program to have memory of data/events.

    a. Variables can be local or global. TRUE

    Yes, depending on the programming language, there might be distinction between the local variable (within a function) and global variables.

    b. Variables cannot be changed. FALSE

    Of course variables can be changed, that's why they are named that way.

    c. Variables have keys and values within brackets [ ]. FALSE/TRUE

    That's a tricky question to answer. Because SOME variables can have keys and values, they are a special kind of variables called arrays. But not ALL variables are arrays, at least in most computer languages, most of the variable hold only one value.

    d. Variables have connected sets of characters. FALSE/TRUE

    Again that's a tricky question, because a variable can contain characters, but can also contain numbers, objects, arrays, functions even.

    e. Variables have names, extents, and scopes. TRUE

    All variables have a name (even if it's a default global system name) and extent and scope.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Which of these are characteristics of variables? Check all that apply. a. Variables can be local or global. b. Variables cannot be changed. ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers