✅Gabarito(D)
Conforme a sintaxe abaixo, percebe-se que para cada elemento/valor, uma função de callback será executada.
jQuery.each( array, callback )
➥ array
Type: ArrayLikeObject
The array or array-like object to iterate over.
➥ callback
Type: Function( Integer indexInArray, Object value )
The function that will be executed on every value.
jQuery.each( object, callback )
➥ object
Type: Object
The object to iterate over.
➥ callback
Type: Function( String propertyName, Object valueOfProperty )
The function that will be executed on every value.
Fonte: https://api.jquery.com/jquery.each/