A. void B. int C. char D. float Show Answer 5. How does the C program determine if a year is a leap year? A. Using a single if statement B. Using nested if statements C. Using a switch case D. Using loop
Python program to check leap year by using the calendar module # importing the moduleimportcalendar# input the yearyear=int(input('Enter the value of year: '))leap_year=calendar.isleap(year)# checking leap yearifleap_year:# to check conditionprint('The given year is a leap year.')else:...