Brillio Interview Question

What is streams ? Why we use lambad ? What is difference between call by reference and call by value ?

Interview Answer

Anonymous

Aug 11, 2021

3. In Call by value, a copy of the variable is passed whereas in Call by reference, a variable itself is passed. In Call by value, actual and formal arguments will be created in different memory locations whereas in Call by reference, actual and formal arguments will be created in the same memory location.

2