Multiple choice External variable is automatically initialized to ___________. 0 1 -1 None of the above Reveal answer Fill a bubble to check yourself A Correct answer Explanation External variables (declared with extern keyword) are automatically zero-initialized in C/C++. This ensures global and external variables start with a predictable value when no explicit initialization is provided.