Examveda

What does the take_while method do in Ruby enumerators?

A. Repeatedly applies a block of code to each element

B. Checks if any element satisfies a given condition

C. Takes elements from a collection until a given condition is met

D. Iterates over each element in a collection and applies a block of code to accumulate a value

Answer: Option C


Join The Discussion

Related Questions on Enumerators and Iterators in Ruby

What is an iterator in Ruby?

A. A predefined set of instructions for performing a specific task

B. A data structure that stores elements sequentially

C. A method that iterates over elements in a collection

D. A method that repeatedly calls a block of code