Handling 2 choices


  1. Copy the following code and complete the if statement so that if age_class is equal to “sapling” it sets y <- 10 and if age_class is equal to “seedling” it sets y <- 5.
     age_class = "seedling"
     if (){
    
     }
     y
    
  2. What is the value of y?