what will be the output of this code and why
options = "year2"
options1 = "semester1"
if (options == "year1") and (options1 == "semester1"):
    print("a")
elif (options == "year1" or "year3" or "year4") and (options1 == "semester2" or "semester3"):
    print("b")
elif (options == "year2" or "year3" or "year4") and (options1 == "semester1"):
    print("c")
else:
    print("d")
 
     
    