IGCSE

IGCSE Computer Science 0478 全套核心词汇,免费下载

IGCSE Computer Science 0478 全套核心词汇,电子版添加客服微信领取

一、Hardware 硬件

hardware 硬件
software 软件
CPU (Central Processing Unit) 中央处理器
core 处理器核心
clock speed 时钟频率
cache 高速缓存
ALU (Arithmetic Logic Unit) 算术逻辑单元
CU (Control Unit) 控制单元
register 寄存器
fetch-decode-execute cycle 取指 - 译码 - 执行周期
motherboard 主板
bus 总线
RAM (Random Access Memory) 随机存取内存(主存)
volatile memory 易失性存储器(断电丢失数据)
ROM (Read Only Memory) 只读存储器
non-volatile memory 非易失性存储器
BIOS 基本输入输出系统
storage device 存储设备
HDD (Hard Disk Drive) 机械硬盘
SSD (Solid State Drive) 固态硬盘
optical disk 光盘(CD/DVD/Blu-ray)
flash memory 闪存
input device 输入设备
keyboard 键盘
mouse 鼠标
touchscreen 触摸屏
scanner 扫描仪
microphone 麦克风
sensor 传感器
output device 输出设备
monitor 显示器
printer 打印机
speaker 扬声器
peripheral 外设
bit 比特(最小单位 0/1)
byte 字节(8 bits)
nibble 半字节(4 bits)
kilobyte (KB) / megabyte (MB) / gigabyte (GB) / terabyte (TB)
binary 二进制
hexadecimal 十六进制
decimal 十进制

二、Data Representation 数据表示

binary digit 二进制位
binary number 二进制数
hexadecimal number 十六进制数
binary shift 二进制移位
character set 字符集
ASCII 美国标准信息交换码
Unicode 统一字符编码
pixel 像素
resolution 分辨率
bit depth 色深
colour depth 颜色深度
metadata 元数据
sample rate 采样率(音频)
bit rate 比特率
compression 压缩
lossy compression 有损压缩(JPG/MP3)
lossless compression 无损压缩(PNG/ZIP)
encryption 加密
decryption 解密
cipher 密码算法
plaintext 明文
ciphertext 密文
key 密钥

三、Software & Operating Systems 软件与操作系统

system software 系统软件
operating system (OS) 操作系统
utility software 工具软件
application software 应用软件
GUI (Graphical User Interface) 图形用户界面
CLI (Command Line Interface) 命令行界面
multitasking 多任务处理
multi-user 多用户
memory management 内存管理
file management 文件管理
peripheral management 外设管理
user account 用户账户
firewall 防火墙
antivirus software 杀毒软件
defragmentation 磁盘碎片整理
backup 备份
archive 归档

四、Networks & Internet 网络与互联网

network 网络
LAN (Local Area Network) 局域网
WAN (Wide Area Network) 广域网
WLAN 无线局域网
network topology 网络拓扑
star topology 星型拓扑
bus topology 总线拓扑
ring topology 环形拓扑
switch 交换机
router 路由器
hub 集线器
NIC (Network Interface Card) 网卡
wireless access point 无线接入点
cable 网线
fibre optic cable 光纤
bandwidth 带宽
packet 数据包
packet switching 分组交换
protocol 协议
IP address IP 地址
MAC address MAC 物理地址
TCP/IP 传输控制协议 / 网际协议
HTTP / HTTPS 网页传输协议(加密)
FTP 文件传输协议
SMTP 邮件发送协议
POP3 / IMAP 邮件接收协议
DNS (Domain Name System) 域名系统
server 服务器
client 客户端
client-server model 客户端 - 服务器模型
peer-to-peer (P2P) 对等网络
broadband 宽带
broadband speed 宽带速率
latency 延迟
network security 网络安全
malware 恶意软件
virus 病毒
worm 蠕虫
trojan horse 木马
spyware 间谍软件
phishing 钓鱼攻击
hacking 黑客入侵
authentication 身份验证
password 密码
biometrics 生物识别
digital signature 数字签名
SSL/TLS 网页加密证书

五、Database 数据库

database 数据库
table 数据表
record 记录(行)
field 字段(列)
primary key 主键
foreign key 外键
relational database 关系型数据库
query 查询
SQL (Structured Query Language) 结构化查询语言
sort 排序
search 搜索
validation 数据验证
verification 数据校验
data type 数据类型
form 表单
report 报表

六、Programming & Algorithms 算法与编程(必考)

通用编程术语
algorithm 算法
flowchart 流程图
pseudocode 伪代码
variable 变量
constant 常量
identifier 标识符
data type 数据类型
integer 整数
real/float 浮点数
boolean 布尔(True/False)
string 字符串
assignment 赋值
operator 运算符
arithmetic operator 算术运算符 +-*/
comparison operator 比较运算符 > <= <>
logical operator 逻辑运算符 AND OR NOT
input 输入
output 输出
sequence 顺序结构
selection /conditional 选择分支(IF ELSE)
iteration /loop 循环
FOR loop 计数循环
WHILE loop 条件循环
REPEAT UNTIL loop 后置循环
array /list 数组 / 列表
index 数组下标
subroutine /procedure/function 子程序、函数
parameter 参数
return value 返回值
global variable 全局变量
local variable 局部变量
trace table 跟踪表(手工模拟程序)
error 错误
syntax error 语法错误
logic error 逻辑错误
runtime error 运行时错误
debug 调试
算法相关
linear search 线性查找
binary search 二分查找
bubble sort 冒泡排序
insertion sort 插入排序
merge sort 归并排序
efficiency 算法效率
time complexity 时间复杂度

七、Computational Thinking 计算思维

decomposition 分解问题
abstraction 抽象
pattern recognition 模式识别
algorithmic thinking 算法思维
abstraction diagram 抽象图
model 模型

八、Exam Command Words 计算机考试指令词

state 直接写出
describe 描述流程 / 结构
explain 解释原理、作用
identify 识别部件 / 术语
compare 对比两者区别
evaluate 评估优缺点
draw /sketch 绘制流程图、拓扑图
trace 用跟踪表模拟程序
complete 补全伪代码 / 表格
calculate 计算存储大小、带宽
define 定义专业术语
write pseudocode 编写伪代码
📞 官方咨询通道
犀牛国际教育官方全国统一咨询电话
国际竞赛 · 国际课程 · 语言培训 · 留学规划
131-2236-3291
📱 同微信
💬 客服随时在线,欢迎拨打犀牛教育官网联系电话
📍 校区:上海、北京、深圳、广州、苏州、杭州、合肥、无锡、南京、武汉、成都、重庆、常州、宁波、天津、青岛、香港、新加坡、美国

相关文章

13122363291 在线咨询