[Q176-Q201] 100%の合格率を試そう!更新されたのはSnowPro-Core日本語試験問題 [2024]

Share

100%の合格率を試そう!更新されたのはSnowPro-Core日本語試験問題 [2024]

合格させるSnowPro-Core日本語試験にはリアル問題解答

質問 # 176
一時テーブルと一時テーブルのフェイルセーフ期間はどのくらいですか?

  • A. 1 日
  • B. 90 日
  • C. これらのテーブルにはフェールセーフ期間はありません。
  • D. 7 日
  • E. 31 日

正解:C

解説:
Reference: https://docs.snowflake.com/en/user-guide/tables-temp-transient.html


質問 # 177
Snowflake でデータをスネアするとき。プロバイダーは共有とともにどのような権限を付与する必要がありますか? (2 つ選択してください)。

  • A. データベース上の USAGE と、共有するテーブルを含むスキーマ
  • B. データベース内の特定のテーブルの使用法。
  • C. データベースと共有するテーブルを含むスキーマに対する OPEBATE。
  • D. データベース内の 1Mb の特定のテーブルを変更します。
  • E. データベース内の特定のテーブルの使用法。

正解:A、E

解説:
When sharing data in Snowflake, the provider needs to grant the following privileges along with a share:
* A. USAGE on the specific tables in the database: This privilege allows the consumers of the share to access the specific tables included in the share.
* D. USAGE on the database and the schema containing the tables to share: This privilege is necessary for the consumers to access the database and schema levels, enabling them to access the tables within those schemas.
These privileges are crucial for setting up secure and controlled access to the shared data, ensuring that only authorized users can access the specified resources.
Reference to Snowflake documentation on sharing data and managing access:
* Data Sharing Overview
* Privileges Required for Sharing Data


質問 # 178
暗号化キーが Snowflake によって自動的にローテーションされる頻度はどれくらいですか?

  • A. 90 日
  • B. 365 日
  • C. 30日
  • D. 60 日

正解:C

解説:
All Snowflake-managed keys are automatically rotated by Snowflake when they are more than 30 days old. Active keys are retired, and new keys are created. When Snowflake determines the retired key is no longer needed, the key is automatically destroyed.
https://docs.snowflake.com/en/user-guide/security-encryption-manage.html#:~:text=All%20Snowflake%2Dmanaged%20keys%20are,the%20key%20is%20automatically%20destroyed.


質問 # 179
Snowflake はどの Snowflake レイヤーでデータを内部的に最適化された圧縮された列形式に再編成しますか?

  • A. クエリ処理
  • B. データベースストレージ
  • C. クラウドサービス
  • D. メタデータ管理

正解:B


質問 # 180
Snowflake ユーザーが、SnowSQL を使用して 125 GB ファイルをロードしようとしています。ファイルはほぼ丸一日ロードされ続けます。 2時間未満の時点で何が起こるでしょうか?

  • A. ファイルの読み込み許容時間数をプログラムで制御して、Snowflake に簡単に読み込むことができます。
  • B. ファイルは、すべてのコンテンツがロードされるまでロードを続けます。
  • C. タイルの読み込みが遅くなり、その時点までのすべてのデータがコミットされます。
  • D. ファイルの一部がコミットされずにファイルの読み込みが中止される可能性があります。

正解:D

解説:
When attempting to load large files, such as a 125 GB file, into Snowflake using SnowSQL, the process might encounter limitations related to the maximum execution time for queries or data loading operations. If the loading process exceeds this time limit (typically around 24 hours), it could be aborted without committing any part of the file to the database. This behavior is designed to prevent indefinite resource consumption and to maintain system stability, emphasizing the need for optimizing data load operations, possibly through file segmentation or parallel loading strategies.References: Snowflake Documentation on Data Loading Considerations


質問 # 181
クエリ結果キャッシュを使用できるかどうかに影響するものは何ですか?

  • A. 複数のユーザーが同じ仮想倉庫を使用している場合
  • B. クエリに決定論的関数が含まれている場合
  • C. テーブル内の参照データが変更された場合
  • D. 仮想倉庫が停止している場合

正解:D


質問 # 182
ドロップされたテーブルの場合でもストレージ使用率情報を保存するメタデータ テーブルはどれですか?

  • A. DATABASE_STORAGE_USAGE_HISTORY
  • B. STORAGE_DAILY_HISTORY
  • C. TABLE_STORAGE_METRICS
  • D. ステージストレージの使用履歴

正解:C

解説:
The TABLE_STORAGE_METRICS metadata table stores the storage utilization information, including for tables that have been dropped but are still incurring storage costs2.


質問 # 183
Snowflake はデータベース オブジェクトの所有権に関して何を推奨していますか? (2 つ選択してください)。

  • A. ACCOUNTADMIN を使用してオブジェクトを作成し、所有権を再割り当てしません。
  • B. ACCOUNTADMIN が所有する 66 オブジェクトに対して MANAGED ACCESS SCHEMAS のみを使用します。
  • C. カスタム ロールを持つオブジェクトを作成し、このロールを SYSADMIN に付与します。
  • D. SYSADMIN を使用してオブジェクトを作成します。
  • E. 後で権限を簡単に付与できるように、SECURITYADMIN を使用してオブジェクトを作成します。

正解:C、D

解説:
Snowflake recommends creating objects with a role that has the necessary privileges and is not overly permissive. SYSADMIN is typically used for managing system-level objects and operations. Creating objects with a custom role and granting this role to SYSADMIN allows for more granular control and adherence to the principle of least privilege. References: Based on best practices for database object ownership and role management.


質問 # 184
仮想ウェアハウスの作成および/または管理に使用できるインターフェースはどれですか?

  • A. SQLコマンド
  • B. Snowflake Webインターフェイス(UI)
  • C. データ統合ツール
  • D. 上記のすべて

正解:D

解説:
Reference: https://docs.snowflake.com/en/user-guide/warehouses.html


質問 # 185
Snowflake クエリ プロファイルの特徴は何ですか?

  • A. クエリ処理の主要コンポーネントをグラフィック表示します。
  • B. Query Profile API を使用してサードパーティ ソフトウェアで使用できます。
  • C. 1 週間あたり最大 100 件のクエリに関する統計を提供できます。
  • D. どのクエリが最も多くのコンピューティング リソースを使用しているかに関する詳細な統計を提供します。

正解:A


質問 # 186
サーバーレス機能はどのように請求されますか?

  • A. 1 秒あたりにジョブの自動サイジングを掛けた値
  • B. SERVERLESS_FEATURES_SIZE アカウント パラメータで決定されるサイズを乗じた 1 秒あたり
  • C. その月の合計費用がアカウントのウェアハウス クレジットの 10% を超えない限り、サーバーレス機能は請求されません。
  • D. 1 分あたりにジョブの自動サイジングを掛けた値で、最小値は 1 分です。

正解:C


質問 # 187
アカウント使用状況ビューと情報スキーマ ビューの主な違いは何ですか? (2 つ選択してください)。

  • A. 情報スキーマ ビューは読み取り専用ですが、アカウント使用状況ビューは読み取り専用ではありません。
  • B. アカウント使用状況ビューのデータ保持期間は 1 年ですが、情報スキーマ ビューのデータ保持期間はビューに応じて 7 日から 6 か月です。
  • C. アカウント使用状況ビューにはテーブルに関するデータが含まれませんが、情報スキーマ ビューには含まれます。
  • D. アカウント問題ビューにはドロップされたオブジェクトが含まれますが、情報スキーマ ビューには含まれません。
  • E. アカウント使用状況ビューをクエリするためにアクティブなウェアハウスは必要ありませんが、情報スキーマ ビューをクエリするにはアクティブなウェアハウスが必要です。

正解:B、D

解説:
The account usage views in Snowflake provide historical usage data about the Snowflake account, and they retain this data for a period of up to 1 year. These views include information about dropped objects, enabling audit and tracking activities. On the other hand, information schema views provide metadata about database objects currently in use, such as tables and views, but do not include dropped objects. The retention of data in information schema views varies, but it is generally shorter than the retention for account usage views, ranging from 7 days to a maximum of 6 months, depending on the specific view.References: Snowflake Documentation on Account Usage and Information Schema


質問 # 188
Snowflake Cloud Services レイヤーはどのサービスを管理しますか? (2 つ選択)。

  • A. クエリの実行
  • B. データストレージ
  • C. コンピューティング リソース
  • D. 認証
  • E. メタデータ

正解:D、E

解説:
Explanation
https://docs.snowflake.com/en/user-guide/intro-key-concepts.html
The cloud services layer is a collection of services that coordinate activities across Snowflake. These services tie together all of the different components of Snowflake in order to process user requests, from login to query dispatch. The cloud services layer also runs on compute instances provisioned by Snowflake from the cloud provider.
Services managed in this layer include:
* Authentication
* Infrastructure management
* Metadata management
* Query parsing and optimization
* Access control


質問 # 189
ビジネス継続性と災害復旧のためのSnowflakeアカウント間のデータベースのフェイルオーバーとフェイルバックに必要なSnowflakeの最小エディションは何ですか?

  • A. ビジネスクリティカル
  • B. バーチャル プライベート スノーフレーク
  • C. エンタープライズ
  • D. 標準

正解:A

解説:
The minimum Snowflake edition required for database failover and fail-back between Snowflake accounts for business continuity and disaster recovery is the Business Critical edition. References: Snowflake Documentation3.


質問 # 190
マルチクラスターウェアハウスと最大90日間のタイムトラベルを提供するSnowflakeの最小エディションは何ですか?

  • A. ビジネスクリティカルエディション
  • B. プレミア
  • C. 標準
  • D. エンタープライズ

正解:D


質問 # 191
ユーザー定義関数 (UDF) ハンドラーをインラインで記述する必要がある言語はどれですか? (2 つ選択してください)。

  • A. Java
  • B. Python
  • C. Javascript
  • D. Scala
  • E. SQL

正解:C、E

解説:
User-Defined Function (UDF) handlers must be written inline for Javascript and SQL. These languages allow the UDF logic to be included directly within the SQL statement that creates the UDF2.


質問 # 192
ウェアハウス競合の期間中、ウェアハウスが処理のためにクエリを保持する最大時間を制御するパラメーターはどれですか?

  • A. QUERY_TIMEOUT_IN_SECONDS
  • B. STATEMENT_QUEUED_TIMEOUT_IN_SECONDS
  • C. STATEMENT_TIMEOUT__IN__SECONDS
  • D. MAX_CONCURRENCY__LEVEL

正解:B

解説:
The parameter STATEMENT_QUEUED_TIMEOUT_IN_SECONDS sets the limit for a query to wait in the queue in order to get its chance of running on the warehouse. The query will quit after reaching this limit.
By default, the value of this parameter is 0 which mean the queries will wait indefinitely in the waiting queue
https://community.snowflake.com/s/article/Warehouse-Concurrency-and-Statement-Timeout-Parameters#:~:text


質問 # 193
結果キャッシュからクエリにアクセスするときに常に利用される Snowflake レイヤーはどれですか?

  • A. 計算
  • B. データストレージ
  • C. クラウド サービス
  • D. メタデータ

正解:C

解説:
The Cloud Services layer in Snowflake is responsible for managing the result cache. When a query is executed, the results are stored in this cache, and subsequent identical queries can leverage these cached results without re-executing the entire query1.


質問 # 194
データをアンロードするときに、浮動小数点数列のデータ値を保持するファイル形式はどれですか?

  • A. CSV
  • B. アブロ
  • C. JSON
  • D. 寄木細工

正解:D

解説:
When unloading data, the Parquet file format is known for its efficiency in preserving the data values for floating-point number columns. Parquet is a columnar storage file format that offers high compression ratios and efficient data encoding schemes. It is especially effective for floating-point data, as it maintains high precision and supports efficient querying and analysis.
References:
* Snowflake Documentation: Using the Parquet File Format for Unloading Data


質問 # 195
ビューで参照される列をユーザーが変更するにはどうすればよいですか?

  • A. 基になるテーブルの列を変更します
  • B. ALTER VIEW コマンドを使用してビューを更新します。
  • C. 必要な変更を加えてビューを再作成します
  • D. ビューをマテリアライズして変更を実行します

正解:B


質問 # 196
特定のユーザーが過去 30 日間に失敗したログインはどこで確認できますか?

  • A. ACCOUNT_USAGE の ACCESS_HISTORY ビュー
  • B. ACCOUNT_USAGE の USERS ビュー
  • C. ACCOUNT_USAGE の SESSIONS ビュー
  • D. ACCOUNT_USAGE の LOGIN_HISTORY ビュー

正解:D

解説:
The LOGIN_HISTORY view in the ACCOUNT_USAGE schema provides information about login attempts, including both successful and failed logins. This view can be used to review the failed login attempts of a specific user for the past 30 days. References: [COF-C02] SnowPro Core Certification Exam Study Guide


質問 # 197
複数のタイプのデータ構造を格納できるのはどのデータ型ですか?

  • A. バイナリ
  • B. バリアント
  • C. VARCHAR
  • D. JSON

正解:B

解説:
The VARIANT data type in Snowflake can store multiple types of data structures, as it is designed to hold semi-structured data. It can contain any other data type, including OBJECT and ARRAY, which allows it to represent various data structures


質問 # 198
Snowflake にデータをロードする際にはどのような点に注意する必要がありますか?

  • A. 各ファイルの処理オーバーヘッドを最大化するために、大きなデータ ファイルを作成します。
  • B. 並列処理されるデータ ファイルの数は、仮想ウェアハウスによって決まります。
  • C. 小さなデータ ファイルを作成し、クラウド ストレージに頻繁にステージングします。
  • D. 並行して実行されるロード操作の数は、ロードされるデータ ファイルの数を超える可能性があります。

正解:B

解説:
When loading data into Snowflake, one critical consideration is the parallel processing capability of the virtual warehouse used for the data loading operation. The number of data files that can be processed in parallel during a loading operation is determined by the size and resources of the virtual warehouse. A larger warehouse can process more files simultaneously, improving the efficiency and speed of data loading operations. Optimizing the size of the virtual warehouse according to the data loading needs and the size and number of files to be loaded can significantly impact the overall performance of the data loading process.
References:
* Snowflake Documentation: Optimizing Data Loading


質問 # 199
正誤問題:Snowflakeのデータウェアハウスは、既存のデータベースやHadoopなどのプラットフォームをベースとして使用する代わりに、クラウド用にゼロから構築された。

  • A. 偽
  • B. 本当

正解:A

解説:
Reference: https://docs.snowflake.com/en/user-guide/intro-key-concepts.html


質問 # 200
Snowflakeへの認証や認証トークンを渡すことなく、ユーザーが非構造化データにアクセスできる URL タイプはどれですか?

  • A. 署名付き URL
  • B. 署名付き URL
  • C. スコープ付き URL
  • D. ファイル URL

正解:A


質問 # 201
......

SnowPro-Core日本語試験問題を最新版を今すぐ試そうの[2024年最新] 正解回答付き:https://www.passtest.jp/Snowflake/SnowPro-Core-JPN-shiken.html