You have an Azure subscription containing an Azure Synapse Analytics dedicated SQL pool named Pool1. You are evaluating whether to enable result set caching for Pool1. The following queries are executed: Query 1: ```sql SELECT COUNT(*) FROM dbo.FactInternetSales ``` Query 2: ```sql SELECT COUNT(*) FROM dbo.FactInternetSales OPTION (LABEL = 'MyQuery') ``` Query 3: ```sql SELECT COUNT(*) FROM dbo.FactInternetSales WHERE OrderDateKey = '20210101' ``` Query 4: ```sql SELECT COUNT(*) FROM dbo.FactInternetSales WITH (NOLOCK) ``` Query 5: ```sql SELECT COUNT(*) FROM dbo.FactInternetSales WHERE CustomerKey = 12345 ``` Which query results will be cached when result set caching is enabled? | Microsoft Azure Data Engineer Associate - DP-203 Quiz - LeetQuiz