What does the grep_v method do in Ruby enumerators?
A. Splits a collection into slices before elements that satisfy a given condition
B. Iterates over each element in a collection indefinitely
C. Combines elements from multiple collections into arrays
D. Filters elements in a collection based on a regular expression, excluding matches
Answer: Option D
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
Which method is used to create an enumerator in Ruby?
A. Enumerable.create
B. Enumerator.create
C. Enumerable.new
D. Enumerator.new
What is the purpose of the each method in Ruby iterators?
A. To iterate over each element in a collection
B. To filter elements in a collection
C. To map elements to a new collection
D. To sort elements in a collection
What does the map method do in Ruby enumerators?
A. Sorts elements in a collection
B. Removes duplicate elements from a collection
C. Selects elements from a collection based on a condition
D. Applies a block of code to each element and returns a new collection

Join The Discussion