Match each of the following bits of code with Correct or Incorrect. Correct code should print True if and only if list fruitlist contains the string 'apple' and should print False otherwise. Incorrect code will not generate the correct results. print("apple" in fruitlist) isapple = False for i in fruitlist: if i == 'apple': isapple = True print (isapple) A. Correct! count = 0 for i in fruitlist: if i == 'apple': count = count + 1 print (count > 0) B. Incorrect! isapple = True for i in fruitlist: if i != 'apple': isapple = False print (isapple)