What does the & operator do when used with a proc in Ruby?
A. Invokes the proc with the given arguments
B. Converts the proc into a lambda so it can be passed to a method that expects a lambda parameter
C. Converts the proc into a block so it can be passed to a method that expects a block parameter
D. Converts the proc into a method so it can be called directly
Answer: Option C

Join The Discussion