A variable in a programming language is considered to be a b
A variable in a programming language is considered to be a basic data abstraction basic control abstraction structured data abstraction structured control abstraction
Solution
A variable in a programming language is considered to be a ----basic data abstration------
Answer :-
basic data abstration
Explanation :-
The scope of a variable is actually a property of the name of the variable, and the extent is a property of the variable itself. These should not be confused with context (also called environment), which is a property of the program
creates two variables to reserve two memory locations with names a and b. We created these variables using int keyword to specify variable data type which means we want to store integer values in these two variables.
