C-16-Q037mediumsingle_mcq
When a new value is assigned to a variable, the previous value is:
When a new value is assigned to a variable, the previous value is:
- akept alongside the new one
- bdeleted, and the last assigned value is stored
- cmoved to another variable automatically
- dignored — the first value remains
ব্যাখ্যা
A variable holds only one value at a time, so a new assignment replaces the old value entirely. The most recently assigned value is what remains stored.