Q12Multiple correct3 Marks30 Apr 2023
Select the correct code block(s) that perform the following task:
1. Accept two strings as input
2. Print Ascending if the first string comes before the second in alphabetical order
3. descending otherwise
For example, if the input is as follows:
java
python
then the expected output is Ascending because python comes after java. Assume that all the strings consist of only one word and will be entered in lowercase during the time of input.