1Mediumgeneralโฑ 45sWhat is the difference between a Proc and a Lambda in Ruby?๐โผAThey are identical in every wayBA lambda checks argument count strictly and returns only from itself; a proc is lenient about arguments and a `return` inside it returns from the enclosing methodCProcs cannot take argumentsDLambdas cannot be stored in variables
2Mediumgeneralโฑ 45sWhat does the `each` method do on an Array?๐โผAModifies the array in place, removing elementsBIterates over each element, yielding it to a block, and returns the original arrayCOnly works on HashesDConverts the array to a String