1. What is the main purpose of declaring and initializing a variable before using it in PSeInt?
To reserve memory and give the variable a known starting value
Обяснение
Declaration tells PSeInt the data type and reserves memory, while initialization gives the variable a defined starting value. Without initialization, the variable may contain an unusable or unpredictable value.