
Unlocking the mystery of call-by-value and call-by-reference
Failed to add items
Sorry, we are unable to add the item because your shopping cart is already at capacity.
Add to basket failed.
Please try again later
Add to Wish List failed.
Please try again later
Remove from Wish List failed.
Please try again later
Follow podcast failed
Unfollow podcast failed
-
Narrated by:
-
By:
About this listen
Unlock the secret to mastering how data flows in programming! 💻✨ Dive into the world of call-by-value and call-by-reference to elevate your Data Structures and Algorithms (DSA) game. Learn how to safeguard your data like a pro or modify it dynamically with ease. Ready to decode the magic? 🚀
#call_by_value
def call_by_value(x): x = x + 10 print("Inside function, x =", x) value = 20 call_by_value(value) print("Outside function, value =", value)
#call_by_reference
def call_by_reference(my_list): my_list.append(42) print("Inside function, my_list =", my_list) numbers = [1, 2, 3] call_by_reference(numbers) print("Outside function, numbers =", numbers)
What listeners say about Unlocking the mystery of call-by-value and call-by-reference
Average Customer RatingsReviews - Please select the tabs below to change the source of reviews.
In the spirit of reconciliation, Audible acknowledges the Traditional Custodians of country throughout Australia and their connections to land, sea and community. We pay our respect to their elders past and present and extend that respect to all Aboriginal and Torres Strait Islander peoples today.