31.
What does the `split` method do when called on a string in Ruby?

33.
What does the `each_key` method do when called on a hash in Ruby?

36.
What does the `reverse` method do when called on a string in Ruby?

38.
What is the output of the given code?
string_array = ["a","e","i","o","u"]
boolean_array = ["True","False"]
puts string_array[3]
puts boolean_array[1]

39.
What will be the output of the following?
array1 = [1,2,3]
array2 = [0,0,0]
if array1 >= array2
print "Greater or equal"
else 
    print "Not equal"
end