Class 12 CS Chapter 1 Back Exercise Part C Solution Sumita Arora New Syllabus / listing12CSSA, Uncategorized / By Neha 1. Write a program to print one of the words negative, zero, or positive, according to whether variable x is less than zero, zero, or greater than zero, respectively. ...click here for answer 2. Write a program that returns True if the input number is an even number, False otherwise. ...click here for answer 3. Write a Python program that calculates and prints the number of seconds in a year. ...click here for answer 4. Write a Python program that accepts two integers from the user and prints a message saying if first number is divisible by second number or if it is not. ...click here for answer 5. Write a program that asks the user the day number in a year in the range 2 to 365 and asks the first day of the year – Sunday or Monday or Tuesday etp. Then the program should display the day on the day-number that has been input. # Code ...click here for answer 6. One foot equals 12 inches. Write a function that accepts a length written in feet as an argument and returns this length written in inches. Write a second function that asks the user for a number of feet and returns this value. Write a third function that accepts a number of inches and displays this to the screen. Use these three functions to write a program that asks the user for a number of feet and tells them the corresponding number of inches. # Code ...click here for answer 7. Write a program that reads an integer N from the keyboard computes and displays the sum of the numbers from N to (2 * N) if N is nonnegative. If N is a negative number, then it’s the sum of the numbers from (2 * N) to N. The starting and ending points are included in the sum. # Code ...click here for answer 8. Write a program that reads a date as an integer in the format MMDDYYYY. The program will call a function that prints print out the date in the format , . ...click here for answer 9. Write a program that prints a table on two columns – table that helps converting miles into kilometres. ...click here for answer 10. Write another program printing a table with two columns that helps convert pounds in kilograms. ...click here for answer 11. Write a program that reads two times in military format (0900, 1730) and prints the number of hours and minutes between the two times. ...click here for answer