which of the following are characteristics of global variables? check all that apply. they are accessible…

which of the following are characteristics of global variables? check all that apply. they are accessible from anywhere in the program. they are accessible only in specific regions of a program. they are accessible only within a declared function. they are accessible during the entire time the program is running. done
Answer
Brief Explanations:
Global variables can be accessed from any part of the program throughout its execution. They are not limited to specific regions or just within declared functions.
Answer:
They are accessible from anywhere in the program. They are accessible during the entire time the program is running.