Multiple choice technology platforms and products

How to delete the global variable named “today,”

  1. sendevent -E DELETE_GLOBAL -G "today=DELETE"

  2. sendevent -E SET_GLOBAL -G "today=NULL"

  3. sendevent -E SET_GLOBAL -G "today=DELETE"

  4. sendevent -DELETE "today"

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

To delete a global variable in AutoSys, use sendevent -E SET_GLOBAL with the variable name set to DELETE. Option A incorrectly uses DELETE_GLOBAL which is not a valid event. Option B sets the variable to NULL rather than deleting it. Option D has invalid syntax.