📚 Year 8 SQA Computing: Key Terms & Vocabulary Quick Guide | SQA 八年级计算机:关键术语词汇速记指南
Welcome to this quick reference guide designed to help Year 8 students master the essential terminology for the SQA Computing curriculum. Understanding these key terms will boost your confidence and performance in both theory and practical tasks. Each term is accompanied by a memorable tip to help you recall it during lessons and assessments.
欢迎使用这份速记指南,旨在帮助八年级学生掌握 SQA 计算机课程的核心术语。理解这些关键词汇将增强你在理论和操作任务中的自信与表现。每个术语都配有一个记忆小窍门,帮助你在课堂和测验中轻松回忆。
1. Algorithms | 算法
Algorithm: A precise, step-by-step set of instructions designed to perform a specific task or solve a problem. It is similar to following a recipe to bake a cake – if you miss a step, the result may not be what you expect.
算法:一套为完成特定任务或解决问题而设计的精确的、一步步的指令。它就像照着食谱烤蛋糕——如果你漏掉一个步骤,结果可能就不是你想要的了。
Memory tip: ‘Al-go-rithm’ sounds like ‘a logical rhythm’ – a sequence of steps with a clear flow, like a dance routine.
记忆提示:“算法”的英文读音可联想成“一个逻辑节奏”——像一段有顺序的舞蹈动作。
Flowchart: A visual diagram that uses standard symbols to represent the steps of an algorithm. Ovals mark start and end, rectangles show processes, and diamonds indicate decisions where the path splits.
流程图:使用标准符号表示算法步骤的可视图表。椭圆形标记开始与结束,矩形表示处理步骤,菱形表示判断点,路径会根据条件分开。
Pseudocode: A human-friendly, informal description of an algorithm written in plain English (or your own language) that ignores strict programming syntax. It bridges the gap between your ideas and actual code.
伪代码:用简单的日常语言写成的算法描述,忽略严格的编程语法。它在你的想法和真正的代码之间架起了一座桥梁。
Sequence: The simplest control structure where instructions are executed one after another, in the exact order they are written.
顺序结构:最简单的控制结构,指令按照书写先后,一条接一条地执行。
Selection: A decision-making structure that chooses a path based on whether a condition is true or false. Often implemented with ‘if’ statements.
选择结构:一种根据条件真假来决定路径的结构,通常通过“如果”语句实现。
Iteration: Repeating a block of code multiple times, often called a loop. Two common types are ‘for’ loops (repeat a set number of times) and ‘while’ loops (repeat while a condition is true).
迭代:重复执行一段代码,常称为循环。常见类型有“for”循环(重复固定次数)和“while”循环(条件为真时重复)。
2. Programming Basics | 编程基础
Program: A set of instructions written in a programming language that tells a computer what to do. Every app and game you use is a program.
程序:用编程语言编写的一套指令,告诉计算机该做什么。你使用的每一个应用程序和游戏都是程序。
Code: The actual lines of text written by a programmer using a specific programming language, such as Python or Scratch.
代码:程序员使用某种特定编程语言(如 Python 或 Scratch)编写的实际文本行。
Memory tip: Think of code as a detailed script for a play; the computer is the actor that follows it word for word.
记忆提示:把代码想象成一部戏剧的详细脚本;计算机就是照本宣科的演员。
Compiler: A special program that translates the entire source code into machine code (binary) before the program runs. Compiled programs usually run faster.
编译器:一种在程序运行前将整个源代码翻译成机器码(二进制)的特殊程序。编译后的程序通常运行得更快。
Interpreter: A program that translates and executes source code line by line, without producing a separate executable file. Python often uses an interpreter.
解释器:一种逐行翻译并执行源代码的程序,不生成独立的可执行文件。Python 常使用解释器。
Debugging: The process of finding and fixing errors (bugs) in code. Debugging skills are as important as writing the code itself.
调试:查找并修复代码中错误(虫子)的过程。调试技巧与编写代码本身同样重要。
Syntax error: A mistake in the code that breaks the language rules, such as misspelling a keyword or missing a colon. The program will not run until the syntax is corrected.
语法错误:违反语言规则的代码错误,例如关键字拼写错误或遗漏冒号。除非语法被纠正,否则程序无法运行。
Logic error: A flaw in the design of the program where the code runs without crashing but produces unexpected or incorrect results. These are often harder to spot than syntax errors.
逻辑错误:程序设计中的缺陷,代码能正常运行但产生错误或意外的结果。这类错误通常比语法错误更难发现。
3. Variables and Data Types | 变量与数据类型
Variable: A named container in the computer’s memory that stores a value which can change as the program runs. You can think of a variable as a labelled box where you keep information.
变量:计算机内存中的一个命名容器,存储着可以随程序运行而改变的值。你可以把变量想象成一个贴着标签的盒子,用来存放信息。
Memory tip: ‘Variable’ = ‘able to vary’. If a box can hold different toys at different times, it’s a variable.
记忆提示:“Variable”含有“vary(变化)”。如果一个盒子能在不同时间放不同玩具,它就是变量。
Data type: The classification that tells the computer what kind of data a variable holds. Common data types include integers, floats, strings, and Booleans.
数据类型:一种分类,用于告诉计算机变量中保存的是哪种数据。常见的数据类型包括整数、浮点数、字符串和布尔值。
Integer (int): A data type for whole numbers, both positive and negative, without decimal points. For example: 5, -3, 2024.
整数 (int):一种用于表示没有小数点的正负整数的数据类型。例如:5、-3、2024。
Float: A data type for numbers that contain a decimal point, such as 3.14 or -0.5. The term ‘float’ comes from the floating decimal point.
浮点数 (float):用于表示带小数点的数字的数据类型,如 3.14 或 -0.5。“Float”得名于可浮动的小数点。
String (str): A sequence of characters (letters, digits, symbols) treated as text. Strings are always enclosed in quotation marks, e.g., “Hello” or “Y8Computing”.
字符串 (str):一串被当作文本处理的字符(字母、数字、符号)。字符串必须放在引号内,如 “Hello” 或 “Y8Computing”。
Boolean (bool): A data type that can only hold one of two values: True or False. Booleans are essential for decision-making in selection statements.
布尔值 (bool):一种只能取两个值之一的数据类型:True 或 False。布尔值对选择语句中的决策至关重要。
Assignment: The operation of giving a value to a variable, usually using the equals sign (=). For instance, score = 10 stores the integer 10 in the variable score.
赋值:将值赋予变量的操作,通常使用等号(=)。例如,score = 10 将整数 10 存入变量 score 中。
4. Hardware Components | 硬件组件
CPU (Central Processing Unit): Often called the ‘brain’ of the computer. It carries out instructions from programs by performing basic arithmetic, logic, and control operations. The speed of a CPU is measured in gigahertz (GHz).
CPU(中央处理器):常被称为计算机的“大脑”。它通过执行基础算术、逻辑和控制操作来运行程序指令。CPU 的速度以吉赫兹(GHz)为单位。
RAM (Random Access Memory): The computer’s temporary, fast memory that stores data currently in use. RAM is volatile, meaning all its contents are lost when the power is turned off. More RAM lets you run more programs smoothly.
RAM(随机存取存储器):计算机的临时高速内存,用于存储当前正在使用的数据。RAM 是易失性的,意味着断电后所有内容都会丢失。内存越大,可以同时流畅运行的程序越多。
ROM (Read-Only Memory): A non-volatile chip that stores permanent instructions, such as the firmware used to start the computer (BIOS). Data in ROM remains even when the power is off.
ROM(只读存储器):一种存储永久指令的非易失性芯片,如用于启动计算机的固件(BIOS)。ROM 中的数据在断电后仍能保留。
Memory tip: RAM forgets when you sleep (power off), but ROM remembers forever.
记忆提示:RAM 在电脑关机睡觉时会忘记一切,而 ROM 则永久记得。
Hard Disk Drive (HDD) / Solid State Drive (SSD): Secondary storage devices that permanently save your files, programs, and operating system even when the computer is off. SSDs are faster and more durable than traditional HDDs.
硬盘驱动器 (HDD) / 固态驱动器 (SSD):辅助存储设备,即使计算机关机也能永久保存文件、程序和操作系统。SSD 比传统 HDD 更快、更耐用。
Input devices: Hardware used to send data and instructions to the computer, such as a keyboard, mouse, touchscreen, or microphone.
输入设备:用于向计算机发送数据和指令的硬件,如键盘、鼠标、触摸屏或麦克风。
Output devices: Hardware that presents information from the computer to the user, e.g., monitor (visual), speakers (audio), and printers (physical copies).
输出设备:将计算机的信息呈现给用户的硬件,例如显示器(视觉)、扬声器(声音)和打印机(实体副本)。
5. Software Concepts | 软件概念
System software: A category of software that manages the computer hardware and provides a platform for application software to run. The most important system software is the operating system (e.g., Windows, macOS, Linux).
系统软件:一类管理计算机硬件并为应用软件提供运行平台的软件。最重要的系统软件是操作系统(如 Windows、macOS、Linux)。
Application software: Programs designed to help users perform specific tasks, such as word processing (Microsoft Word), creating presentations (PowerPoint), or browsing the web (Chrome).
应用软件:旨在帮助用户完成具体任务的程序,例如文字处理(Microsoft Word)、制作演示文稿(PowerPoint)或浏览网页(Chrome)。
Memory tip: System software is like the school’s infrastructure (hallways, electricity), while application software is the classroom lessons you choose to attend.
记忆提示:系统软件好比学校的基础设施(走廊、电力),应用软件则是你选择参加的课堂课程。
Operating system (OS): The core software that controls the overall operation of the computer. It manages memory, processes, security, and peripheral devices, and provides a user interface.
操作系统 (OS):控制计算机整体运行的核心软件。它管理内存、进程、安全与外设,并提供用户界面。
Utility software: A type of system software that helps maintain or protect the computer, for example, antivirus scanners, disk cleaners, and backup tools.
实用工具软件:一种帮助维护或保护计算机的系统软件,例如杀毒软件、磁盘清理程序和备份工具。
User Interface (UI): The way a user interacts with a computer or program. Graphical User Interfaces (GUI) use windows, icons, and menus; command-line interfaces require typing text commands.
用户界面 (UI):用户与计算机或程序交互的方式。图形用户界面使用窗口、图标和菜单;命令行界面则需要输入文本命令。
6. Networks and the Internet | 网络与互联网
Network: Two or more computers connected together to share resources (files, printers) and communicate. Networks can be wired or wireless.
网络:两台或以上计算机连接在一起,以共享资源(文件、打印机)和通信。网络可以是有线或无线的。
LAN (Local Area Network): A network that covers a small geographical area, such as a school, office building, or home. LANs offer high-speed data transfer.
LAN(局域网):覆盖较小地理区域的网络,如学校、办公楼或家庭。局域网提供高速数据传输。
WAN (Wide Area Network): A network that connects LANs over a large geographical area, such as cities or countries. The Internet is the largest WAN in existence.
WAN(广域网):连接多个局域网、覆盖广阔地理区域的网络,如城市或国家。互联网是世界上最大的广域网。
Memory tip: LAN is Local (like your local playground); WAN is Wide (like the whole world map).
记忆提示:LAN 是本地(像你家附近的运动场);WAN 是广阔(像整个世界地图)。
Router: A networking device that forwards data packets between different networks. In homes, routers connect the local network to the Internet and often include Wi-Fi capability.
路由器:一种在不同网络之间转发数据包的网络设备。在家庭中,路由器将本地网络连接到互联网,并且通常包含 Wi-Fi 功能。
Switch: A device that connects multiple computers and devices within the same LAN, directing data only to the intended recipient to reduce unnecessary traffic.
交换机:在同一局域网内部连接多台计算机和设备的设备,只将数据发送给目标接收者,以减少不必要的网络流量。
IP Address: A unique string of numbers (e.g., 192.168.1.1) assigned to each device on a network, acting like a postal address so data knows where to go.
IP 地址:网络中为每台设备分配的唯一数字编号(例如 192.168.1.1),就像邮政地址一样确保数据知道该去哪里。
DNS (Domain Name System): The ‘phonebook’ of the Internet. It translates easy-to-remember domain names (like aleveler.com) into the numerical IP addresses that computers use.
DNS(域名系统):互联网的“电话簿”。它将易于记忆的域名(如 aleveler.com)翻译成计算机使用的数字 IP 地址。
7. Data Representation | 数据表示
Binary: The base-2 number system used by computers, which uses only two digits: 0 and 1. Each 0 or 1 is called a bit. All data inside a computer (text, images, sound) is ultimately stored as binary patterns.
二进制:计算机使用的基数为 2 的数字系统,只使用 0 和 1 两个数字。每一个 0 或 1 叫作一个比特。计算机内的所有数据(文字、图像、声音)最终都以二进制形式存储。
Memory tip: Think of binary as a light switch – only on (1) or off (0).
记忆提示:二进制像电灯开关——只有开(1)和关(0)两种状态。
Bit (Binary Digit): The smallest unit of data in computing. A single bit can represent two possible values, 0 or 1.
比特(二进制位):计算机科学中数据的最小单位。一个比特可以表示两个可能的值:0 或 1。
Byte: A group of 8 bits. A byte can represent 256 different values (2^8) and is typically the amount of storage needed for one character of text, such as a letter or number.
字节:一组 8 个比特。一个字节可以表示 256 个不同值(2 的 8 次方),通常是存储一个文本字符(如一个字母或数字)所需要的空间。
ASCII (American Standard Code for Information Interchange): A widely used character encoding system that assigns a unique 7-bit binary number to each letter, digit, and common symbol. For example, the uppercase letter ‘A’ is represented by code 65 (binary 1000001).
ASCII(美国信息交换标准代码):一种广泛使用的字符编码系统,为每个字母、数字和常用符号分配一个唯一的 7 位二进制编号。例如,大写字母“A”的代码是 65(二进制 1000001)。
Pixel: Short for ‘picture element’. The smallest individually controllable dot that makes up a digital image or screen. The quality of an image is often measured by its pixel dimensions (e.g., 1920 × 1080).
像素:“图像元素”的简称。构成数字图像或屏幕的最小可控点。图像质量常用像素尺寸来衡量(如 1920 × 1080)。
8. Cybersecurity Essentials | 网络安全基础
Malware: Short for ‘malicious software’. Any program designed to harm a computer, network, or user. Examples include viruses, worms, and ransomware.
恶意软件:“恶意软件”的缩写。任何旨在损害计算机、网络或用户的程序,例如病毒、蠕虫和勒索软件。
Virus: A type of malware that spreads by attaching itself to legitimate files or programs. It requires human action, like opening an infected attachment, to activate and replicate.
病毒:一种通过附加到合法文件或程序来传播的恶意软件。它需要人的操作(如打开受感染的附件)才能激活和复制。
Phishing: A fraudulent attempt to trick you into revealing sensitive information (passwords, bank details) by pretending to be a trustworthy source, typically via email or fake websites. The word plays on ‘fishing’ – the attacker is baiting you to give away secrets.
网络钓鱼:一种欺诈手段,伪装成可信赖的来源,诱骗你透露敏感信息(密码、银行资料),通常通过电子邮件或虚假网站进行。这个词源自“钓鱼”的英语,攻击者正是用诱饵来骗取你的秘密。
Memory tip: Don’t take the bait! Verify the sender before clicking any link.
记忆提示:别咬饵!点击任何链接前先核实发件人。
Encryption: The process of scrambling readable data into an unreadable coded form so that only authorised parties with the correct key can decipher it. Websites use encryption (https) to protect your personal information.
加密:将可读数据打乱成无法阅读的编码形式的过程,只有拥有正确密钥的授权方才能解密。网站使用加密(https)保护你的个人信息。
Firewall: A security system (hardware or software) that monitors and controls incoming and outgoing network traffic based on predetermined security rules, acting as a barrier between a trusted network and untrusted networks.
防火墙:一种安全系统(硬件或软件),根据预设的安全规则监控和控制网络流量的进出,充当可信网络与不可信网络之间的屏障。
Password strength: A measure of how resistant a password is to guessing or cracking. Strong passwords are long (at least 12 characters), include a mix of uppercase letters, lowercase letters, numbers, and symbols, and avoid common words or personal information.
密码强度:衡量密码抵抗猜测或破解的能力。强密码足够长(至少 12 个字符),混合使用大小写字母、数字和符号,并避免使用常见词语或个人信息。
9. Computational Thinking | 计算思维
Computational thinking: The thought process involved in formulating a problem and expressing its solution in a way that a computer or human can effectively carry out. It involves four main pillars: decomposition, pattern recognition, abstraction, and algorithmic thinking.
计算思维:将问题以计算机或人能够有效执行的方式表述出来并给出解决方案的思维过程。它包含四个主要支柱:分解、模式识别、抽象和算法思维。
Decomposition: Breaking down a complex problem into smaller, more manageable parts. For example, planning a school trip can be decomposed into transport, food, permission slips, and scheduling.
分解:把一个复杂问题拆分成更小、更易管理的部分。例如,策划学校旅行可以分解为交通、食物、许可条和排程。
Pattern recognition: Looking for similarities, trends, or patterns among the smaller parts of a problem. Reusing previous experience makes
Published by TutorHao | Year 8 Computer Science Revision Series | aleveler.com
更多咨询请联系16621398022(同微信)
屏轩国际教育cambridge primary/secondary checkpoint, cat4, ukiset,ukcat,igcse,alevel,PAT,STEP,MAT, ibdp,ap,ssat,sat,sat2课程辅导,国外大学本科硕士研究生博士课程论文辅导Cancel reply