4.16Supposeyouwritethecodetodisplay"Cannotgetadriver'slicense"ifageislessthan16and"Cangetadriver'slicense"ifageisgreaterthanorequalto16.Whichofthefollowingcodeiscorrect?I:ifage<16:print("Cannotgetadriver'slicense")ifage>=16:print("Cangetadriver'slicense")II:ifage<16:print("Cannotgetadriver'slicense")else:print("Cangetadriver'slicense")III:ifage<16:print("Cannotgetadriver'slicense")elifage>=16:print("Cangetadriver'slicense")IV:ifage<16:print("Cannotgetadriver'slicense")elifage==16:print("Cangetadriver'slicense")elifage>16:print("Cangetadriver'slicense")
D
III and IV