用語と説明
Python, Java, C, C++, JavaScript, C#, Ruby, PHP, Swiftなど
読み方:
画像検索: 画像検索を見る
説明:
PythonはAIやデータ分析、Javaはアプリ開発、JavaScriptはウェブサイト、C++はゲームなど、いろいろな分野で使われます。
English Explanation: Python is used for AI and data analysis, Java for app development, JavaScript for websites, and C++ for games.
ソースコード(source code)
読み方:
画像検索: 画像検索を見る
説明:
ソースコードは、プログラムを人間が書いた形のままのものです。たとえば「print(‘こんにちは’)」と書くと、画面に「こんにちは」と表示されます。
English Explanation: The human-readable form of a program. For example, writing print(‘Hello’) displays “Hello” on the screen.
機械語(machine language)
読み方: きかいご
画像検索: 画像検索を見る
説明:
機械語は、コンピュータが直接わかる形(0と1の並び)です。ソースコードをコンピュータが読めるように変換する必要があります。
English Explanation: The form directly understood by computers (a sequence of 0s and 1s). Source code needs to be translated into this form.
インタプリタ方式(interpreter)
読み方:
画像検索: 画像検索を見る
説明:
インタプリタ方式は、プログラムを実行しながらその場で翻訳します。たとえば、Pythonはインタプリタ方式です。
English Explanation: Executes programs line by line while translating on the spot. For example, Python uses this method.
コンパイラ方式(compiler)
読み方:
画像検索: 画像検索を見る
説明:
コンパイラ方式は、プログラムを先に全部翻訳してから実行します。たとえば、C言語で作ったプログラムはこう動きます。
English Explanation: Translates the entire program first, then executes it. For example, programs written in C use this method.
変数(variable)
読み方: へんすう
画像検索: 画像検索を見る
説明:
変数は、データをしまっておく箱のようなものです。たとえば、変数xに「5」を入れると、あとでその「5」を使えます。
English Explanation: A container for storing data. For example, assigning x = 5 allows the number 5 to be used later.
選択構造(selection structure)
読み方: せんたくこうぞう
画像検索: 画像検索を見る
説明:
選択構造は、「もし雨なら傘を持っていく」など、条件によって行動を変える仕組みです。プログラムではif文を使います。
English Explanation: A mechanism for decision-making based on conditions. For example, “If it rains, take an umbrella,” uses if statements in programming.
繰り返し構造(loop structure)
読み方: くりかえしこうぞう
画像検索: 画像検索を見る
説明:
繰り返し構造は、「1から10まで数を順番に表示する」など、同じ作業を何度も繰り返す仕組みです。
English Explanation: A mechanism to repeat tasks. For example, displaying numbers from 1 to 10 sequentially.
JavaScript(JS)
読み方:
画像検索: 画像検索を見る
説明:
JavaScriptは、ボタンを押したときに画面を変えたり、動きをつけたりするのに使われます。
English Explanation: Used to create interactive elements like changing screens or adding animations when a button is clicked.
HTML
読み方:
画像検索: 画像検索を見る
説明:
HTMLは、ウェブページの骨組みを作ります。たとえば、「見出し」や「文章」を決めることができます。
English Explanation: Builds the structure of web pages. For example, specifying “headings” and “text.”
XML
読み方:
画像検索: 画像検索を見る
説明:
XMLは、データをきちんと整理して保存するときに使います。たとえば、名前や住所をまとめて保存できます。
English Explanation: Used to organize and store data systematically. For example, saving names and addresses together.
キュー(queue)
読み方:
画像検索: 画像検索を見る
説明:
キューは、列に並んでいる順番に取り出します。たとえば、プリンターが印刷ジョブを登録順に処理する仕組みです。
English Explanation: A structure where items are processed in the order they were added. For example, printers process print jobs sequentially.
スタック(stack)
読み方:
画像検索: 画像検索を見る
説明:
スタックは、後から入れたものを先に取り出します。たとえば、ブラウザで「戻る」ボタンを押すと、最後に開いたページから順に戻ります。また、本を積み重ねて上から取る場合も同じです。
English Explanation: A structure where the last item added is the first one retrieved. For example, the “back” button in browsers or a stack of books.