Multiple choice technology programming languages

Workbook_Open() method is ____________ by default

  1. Private

  2. Public

  3. Abstract

  4. Protected

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

Workbook_Open() defaults to Private scope in the ThisWorkbook module, meaning it can only be called from within that module, not from outside. Private is the default access modifier for procedures in class modules like ThisWorkbook.