Programming (11th Grade)

Explain the difference between 'pass by value' and 'pass by reference'.

Pass by value sends a copy of the variable's value, while pass by reference sends a reference to the variable itself, allowing for modifications.