1. Write a program which will find factors of given number and find whether the factor is even or odd.
Hint: Use Loop with if-else statements
2. Write a code which accepts a sequence of words as input and prints the words in a sequence after sorting them alphabetically.
Hint: In case of input data being supplied to the question, it should be assumed to be a console input.
3. Write a program, whichwill find all the numbers between 1000 and 3000 (both included) such that each digit of a number is an even number. The numbers obtained should be printed in a comma separated sequence on a single line.
Hint: In case of input data being supplied to the question, it should be assumed to be a console input. Divide each digit with 2 and verify is it even or not.
Suppose if the entered string is: Python0325Then the output will be:
LETTERS: 6 DIGITS:4
Hint: Use built-in functions of string.
Hint: Use built-in functions of string.