C-16-Q132mediumsingle_mcq
Reassigning value_now from 1 to 2 to 3 with print after each line shows that variables:
Reassigning value_now from 1 to 2 to 3 with print after each line shows that variables:
- aaccumulate every value
- bretain only the most recently assigned value at any moment
- calways print the first value
- dalways print the largest value
ব্যাখ্যা
Each new assignment overwrites the previous value, so a variable always holds only its latest assigned value. Printing after each reassignment shows 1, then 2, then 3 — never the earlier values.