6.integer variables can hold the numbers ranging from _to_?
7.the value of _does not change throughout the execution of the program?
8._is a symbolic name given to every data?
9.all c++programs must contain_function?
10.visual basic is one of the components of the _?
Answers
Answer:
A controlled variable or constant variable is a variable that does not change during an experiment.
Explanation:
make me brainliest bro
Answer:6.Integer variables hold values that have no fractional part (that is, whole numbers only). Integer variables come in two flavors: signed integer variables can hold positive or negative values, whereas unsigned integer variables can hold only positive values (and 0).
Answer:7.The entity whose value does not change during program execution are called 'constants'. The Opposites are called 'variables', there value changes during program execution.
Answer:8.A variable is a symbolic name for (or reference to) information. The variable's name represents what information the variable contains. They are called variables because the represented information can change but the operations on the variable remain the same.
Answer:9.In the C programming language, the main() method or function is the mandatory function because all the compilation process is started with the main() function it means when we start compilation process in the c programming language the control moves to the main() and read the function and variable sequentially inside.
Answer:10.IDE stands for Integrated Development Environment.