essay 5 points\nchained and nested conditionals\nin order to express more complex de - d conditionals (else…

essay 5 points\nchained and nested conditionals\nin order to express more complex de - d conditionals (else / else - if) and nested conditionals (if statements inside of if statements). these are powerful tools which can be combined to express any complex boolean condition.\npractice: using what you know about writing if, if - else, and if - else - if statements, write pseudocode to accomplish the tasks given below. assume that you are writing an application which asks the user to input the day of the week (a string) and his age (a number) and that these are stored in variables called day and age.\nexample: if the day is friday, write, \thank goodness its friday.\ otherwise, write, \how long till friday?\\nif day == friday\n write thank goodness its friday\nelse\n write how long till friday?\nif the day is any day but \monday\ the program writes, \at least its not monday.\\nedit view insert format tools table\n12pt paragraph b i u a t²
Answer
Explanation:
Step1: Check for non - Monday condition
if day != "Monday" write "At least it's not Monday." else write "It's Monday."
Answer:
if day != "Monday" write "At least it's not Monday." else write "It's Monday."