Checkpoint 7.7.1.
Click on the name of each variable that had been initialized with the value of 0.
Remember that the index of a string begins at 0, not 1.
def main() {: string fruit = "apple"; size_tindex_a= fruit.find('e'); size_tindex_b= fruit.find("app"); size_tindex_c= fruit.find('a'); size_tindex_d= fruit.find('l'); }