# バイナリの接頭辞

バイナリサイズの表現方法は、どの標準に従うかに依存します。 IEC 標準によれば:

* 1 KBは1000バイトに相当します。
* 1 MB は 1000 KB と等しい
* 1 GB は 1000 MB と等しい

これは、Apple がディスク容量を報告する際によく使用する10進法ベースのシステムです。

対照的に、JEDEC 標準は、Microsoft や他の多くのベンダーが広く採用しており、次のように定義されています:

* 1 KB は 1024 バイトとして
* 1 MB は 1024 KB である
* 1 GB は 1024 MB である

このバイナリ解釈は、RAM や Microsoft Windows が容量を報告する方法と一致しています。

Nexthink は、そのユーザーの大多数にとって親しみやすいアプローチを採用しています。 データをクエリまたはエクスポートする際、1 KB を 1024 バイト、1 MB を 1024 KB、1 GB を 1024 MB と解釈し、バイナリ (JEDEC) モデルを採用しています。 しかし、これらのバイナリ値を IEC のバイナリ専用単位（KiB、MiB、GiB）ではなく、10進数の記号 KB、MB、GB を使用してラベル付けしています。

これは、Microsoft の慣例およびメモリ関連の値に対する一般的なユーザーの期待値との一貫性を確保します。 Apple の IEC ベースのディスク容量報告と比較すると、表面上の不一致が生じることがありますが、これらの違いはラベル付けに過ぎず、基礎となるバイト数はまったく同じです。


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.nexthink.com/platform/ja/references/database-information-and-organization/binary-prefixes.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
