Answer:
Static.
Explanation:
A local variable can be defined as an argument passed to a function or a variable that is declared within a function and as such can only be used or accessed within the function.
This ultimately implies that, a local variable is effective whilst the function or block is being executed (active).
Basically, all local variables can only be a member of either the register storage, static or auto (dynamic) categories in computer programming.
A local variable that is declared as static causes the program to keep the variable and its latest value even when the function that declared it is through executing.
Hence, the memory of a local variable that is declared as static remains for the lifetime (duration) of the whole program.
Answer:
The answer is design.
Explanation:
I know this because based off the notes it states that "the designer can use a model or mock-up to illustrate the look and feel, to help gain a better understanding of the necessary elements and structures.
The pseudocode representing the above described logic of a program is:
start
input num1
input num2
set product = num1*num2
output product
stop
See the related flow chart is attached.
<h3>What is a pseudocode?</h3>
Pseudocode is a precise yet comprehensible explanation of what a computer program or algorithm must perform, written in normal language rather than programming language.
Pseudocode is occasionally used as a detailed phase in the development of a program.
Learn more about Pseudocode:
brainly.com/question/24953880
#SPJ1