Respuesta :

Items in square brackets are required in the syntax of an algorithm(Visual Basic)

This is a TRUE statement.

Explanation:

  • The square brackets are used to tell the compiler that he should interpret it as a type, even if it would be a keyword.
  • The square brackets are also used to define the else clause in the if-else statement in VB.

If condition [ Then ]

[ statements ]

[ ElseIf elseifcondition [ Then ]

[ elseifstatements ] ]

[ Else

[ elsestatements ] ]

End If

  • The ElseIf and Else clauses are both optional. You can have as many ElseIf clauses as you want in an If Then Else statement, but no Else If clause can appear after an Else clause. If Then Else statements can be nested within each other.