4) Draw a flowchart that obtains a numbers and checks if this number is positive or negative. If the number is positive, output1 will be equal to the number. Otherwise output1 will be equal to the negative of the number. Additionally, the program will check if the number is odd or even. If the number is odd, it will print "Your number is odd", otherwise, it will print "Your number is even". Hint: To check if a number is odd or even you calculate the remainder from the dividing the number by 2.
5) What is the output of the program described by flowchart below, using the following values: 75, 25, 51, 49, 88, 12, 22, 23, 52, and 78.
6) Draw the flowchart for a program that accepts an unknown number of ages from the keyboard until zero is entered. If the age is greater than or equal to 100 output "You have lived a century" otherwise if age is greater than or equal to 55 output "AARP here I come" otherwise output "You are still a spring chicken."