Conditional execution
Which of the following is/are true?
- You can have many statements between If...Then and End If
- The statements between If...Then and End If are executed sequentially
- You can only have one statement between If...Then and End If
- Every If...Then must have a matching End If
- If you declare a variable between the If...Then and the End If, its scope is local to that block of code
- You cannot declare variables between an If...Then and End If
Explain your answer.