Computer Science, asked by dehsray, 10 months ago

It is the keyword in Pseudocodes that indicates a value being stored to a temporary storage from any source excluding user entry.
Select one:
a. APPEND ... TO ...
b. DECLARE ...
c. SET ... AS ...
d. INPUT ...

Answers

Answered by captainkhan85
1
Pseudocode is an artificial and informal language that helps programmers develop algorithms. Pseudocode is a "text-based" detail (algorithmic) design tool.

Option D is correct.
Input
Answered by Arslankincsem
0

The keyword which is used in pseudocodes to store values to temporary storage is declared.


It helps in initializing a variable to a value. The next time the same identifier can be used in the mathematical operations and one doesn't have to directly refer to value.


They can instead use the identifier to set the value.


For eg; a=2, b=3, c=a+b, rather than writing that c=2+3 because that makes c constant.

Similar questions