1. Adobe Commerce Developer Documentation
"Performance Best Practices > Database optimization": This guide discusses the impact of catalog size on performance. It states
"The number of products has a direct impact on the catalog browsing performance... The number of websites
stores
and store views also affects performance because it relates to the number of scopes in your system." This supports that adding websites and SKUs (expanding the catalog) impacts performance
validating answers B and C.
2. Adobe Commerce Developer Documentation
"PHP Developer Guide > Architecture > Scopes": This section explains how data for entities like products and categories can be set at different scopes (global
website
store view). It details how website-level scope allows for different pricing or product availability per website
which directly leads to an expansion of catalog data as new websites are added. This validates answer B.
3. Adobe Commerce Developer Documentation
"PHP Developer Guide > Indexing": The documentation explains
"Each indexer can perform one of the following reindex types: Full reindex... Partial reindex...". A larger catalog with more stores and SKUs increases the amount of data to be processed during both full and partial reindexing
making the process longer. This directly supports answer C.