It’s Haskell program evaluating method in which expressions are not evaluated when they are bound with variables, but the program evaluation is going to defer until their results are required by other computations.Simplifying it, this means call-by-name plus sharing, which is opposite to eager evaluation.

BY Best Interview Question ON 24 Mar 2019