CMIS 102 Learning the logical operators: && || ! Using the LogicalOperatorsTest.java program as a base and a guide: (these are not related and can be done in any order, commenting out all other code). 1. ask the user to input an integer between 10 and 20 and then determine whether or not the user entered a valid number. 2. input two numbers from the user and determine if either is nonzero. 3. ask the user to input the name of a day of the week and then check whether or not the user entered a valid name. 4. input two numbers from the user and determine if they are both positive or if they are both negative or if one is negative and the other is positive. Bonus: Write code to input 3 numbers and determine which is the smallest and which is the biggest. Output the numbers in increasing order. Example: say input is 2 9 4 then output 2 4 9