Detailed Explanation:
Rationale for Correct Answer (True):Local values (locals {}) are scoped to a module and are not directly visible outside. To make them available to callers, you must define outputs in the module. Outputs act as the interface for exposing values from a child module to the root module.
Analysis of Incorrect Option:
False: Incorrect, because locals cannot be exposed directly; only via outputs.
Key Concept:Outputs are the way to expose information outside of a module.