Multiple choice technology testing

If the same programmatic description (Window (“Title:=Login”).)is used several times, then

  1. We can assign the object to a variable

  2. We can use With and End with statements

  3. We should use them every time

  4. None of the above

Reveal answer Fill a bubble to check yourself
A,B Correct answer
Explanation

To optimize performance and code readability when a programmatic description is reused, we can assign the description to an object variable or group the statements using a With/End With block. Both options are valid, but as this is a multiple-choice question with multiple 'correct' options, it is marked as ok.