📚 Year 11 CAIE Computer Science: Summer Preparatory and Bridging Course | CAIE IGCSE 计算机科学暑期预习与衔接课程
The summer break offers a golden opportunity to consolidate your Year 10 knowledge and preview the more advanced topics in the CAIE IGCSE Computer Science (0478) syllabus. A structured summer bridging course can transform your understanding, sharpen your computational thinking, and set you up for top grades in Year 11. This article provides a comprehensive roadmap to guide your self-study and revision over the break.
暑假是巩固高一知识并预习 CAIE IGCSE 计算机科学(0478)进阶课题的黄金时机。系统化的暑期衔接课程能够加深你的理解、锻炼计算思维,并为 Year 11 取得高分奠定基础。本文将为你提供一份详尽的自主学习与复习路线图。
1. Why a Summer Bridging Course? | 暑期衔接为何重要?
Skipping revision can lead to gaps in foundational topics like binary arithmetic and the fetch-decode-execute cycle. A bridging course helps you revisit these concepts and introduces new syllabus sections such as Boolean logic and automated systems, which often appear in Paper 1 theory and Paper 2 problem-solving.
跳过复习可能导致二进制运算和取指-译码-执行周期等基础话题出现漏洞。衔接课程能帮你重温这些概念,并引入布尔逻辑和自动化系统等新考纲内容,这些在 Paper 1 理论和 Paper 2 问题解决中经常出现。
Moreover, consistent practice with pseudocode and programming during the summer greatly reduces exam stress. You will enter Year 11 with a stronger ability to trace algorithms and write efficient code, which is essential for Paper 2.
此外,暑期坚持练习伪代码和编程能大幅减轻考试压力。你将带着更强的算法跟踪和高效编码能力进入 Year 11,这对于 Paper 2 至关重要。
2. CAIE IGCSE Computer Science Syllabus (0478) at a Glance | CAIE IGCSE 计算机科学大纲(0478)一览
The syllabus is split into two papers: Paper 1 (Computer Systems) covers theory topics from data representation to emerging technologies, while Paper 2 (Algorithms, Programming and Logic) tests problem-solving, pseudocode, and programming concepts. Understanding the weight and structure of each topic helps you prioritise your summer study.
大纲分为两份试卷:Paper 1(计算机系统)涵盖从数据表示到新兴技术的理论;Paper 2(算法、编程与逻辑)考查问题解决、伪代码和编程概念。了解各话题的权重与结构有助于你制定暑期学习的优先级。
During the bridging course, we will walk through the key subtopics, highlighting the ones that build on Year 10 learning and those that are new in Year 11. This ensures a seamless transition.
在衔接课程中,我们将梳理关键子话题,点明哪些是在 Year 10 学习基础上的深化,哪些是 Year 11 新内容,确保平稳过渡。
3. Data Representation | 数据表示
Binary, denary and hexadecimal conversions are the bedrock. Master the place values: for binary, use powers of 2 (2⁰, 2¹, 2²… up to 2⁷ for a byte). Practise converting 8-bit binary to denary and vice versa, and then move to hexadecimal using groups of 4 bits. Remember that hex uses digits 0-9 and letters A-F.
二进制、十进制与十六进制转换是基石。掌握位权:二进制使用 2 的幂(2⁰、2¹、2²… 最高 2⁷ 对应一个字节)。练习 8 位二进制与十进制的相互转换,然后通过 4 位一组转向十六进制。记住十六进制使用数字 0-9 和字母 A-F。
Data storage units (bit, nibble, byte, kilobyte, megabyte, etc.) and file size calculations are common exam questions. Also review binary addition, logical shifts, two’s complement (negative numbers), and character sets (ASCII, Unicode). The summer is ideal for memorising the ASCII codes for uppercase letters (A=65) and digits (0=48).
数据存储单位(位、半字节、字节、千字节、兆字节等)和文件大小计算是常见考题。还需复习二进制加法、逻辑移位、二进制补码(负数)以及字符集(ASCII、Unicode)。暑期是记忆大写字母 ASCII 码(A=65)和数字(0=48)的好时机。
Overflow Example: 11111111₂ + 1₂ = 1 00000000₂ (9 bits, overflow in 8-bit register)
溢出示例:11111111₂ + 1₂ = 1 00000000₂(9 位,在 8 位寄存器中溢出)
4. Data Transmission | 数据传输
Understand the difference between serial and parallel transmission, and why serial is preferred for long distances (no crosstalk). Simplex, half-duplex and full-duplex are simple, but USB (Universal Serial Bus) features like plug-and-play, automatic detection and power supply are frequently tested. Also study error detection methods: parity bits, checksums, echo checks and check digits (e.g. ISBN).
理解串行传输与并行传输的区别,以及为何长距离传输优先使用串行(无串扰)。单工、半双工和全双工的概念简单,但 USB(通用串行总线)的特性——即插即用、自动检测和供电——是常考内容。还需学习错误检测方法:奇偶校验位、校验和、回波校验和校验位(如 ISBN)。
Encryption is part of this topic too. Symmetric (private key) and asymmetric (public key) encryption should be clearly distinguished. Bridging students should practise explaining how public key encryption provides secure transmission.
加密也属于该话题。需要清楚区分对称加密(私钥)和非对称加密(公钥)。衔接学生应练习解释公钥加密如何实现安全传输。
Parity check: even parity sets an extra bit so the total number of 1s is even. A single-bit error can be detected, but double-bit errors may go unnoticed.
奇偶校验:偶校验设置一个额外位使 1 的总数为偶数。可以检测单比特错误,但双比特错误可能被遗漏。
5. Hardware | 硬件
Central Processing Unit (CPU) components – CU, ALU, registers (MAR, MDR, PC, ACC) – and the fetch-decode-execute cycle are crucial. Many students mix up the roles of MAR (holds address) and MDR (holds data). A bridging activity: draw and label the cycle for various instructions.
中央处理器(CPU)组件——控制器、算术逻辑单元、寄存器(MAR、MDR、PC、ACC)——以及取指-译码-执行周期至关重要。许多学生混淆 MAR(存地址)和 MDR(存数据)的功能。衔接活动:画出并标注不同指令的执行周期。
Memory types: RAM vs ROM, differences in volatile/non-volatile, and virtual memory. Also review input/output devices (sensors, touchscreens, projectors) and storage media (magnetic, optical, solid state). Focus on the characteristics: portability, speed, capacity, durability.
存储器类型:RAM 与 ROM,易失性/非易失性的区别,以及虚拟内存。还需复习输入/输出设备(传感器、触摸屏、投影仪)和存储介质(磁、光、固态)。关注特性:便携性、速度、容量、耐用性。
Embedded systems: a dedicated computer inside a larger device (e.g. microwave, washing machine). Understand why they are often simpler, low power, and run a single program stored in ROM.
嵌入式系统:位于较大设备内部的专用计算机(如微波炉、洗衣机)。理解它们为何通常更简单、低功耗并且运行存储在 ROM 中的单一程序。
6. Software | 软件
Operating systems provide a user interface, manage memory/peripherals, and handle multitasking and security. Be able to explain
Published by TutorHao | Year 11 Computer Science Revision Series | aleveler.com
更多咨询请联系16621398022(同微信)
屏轩国际教育cambridge primary/secondary checkpoint, cat4, ukiset,ukcat,igcse,alevel,PAT,STEP,MAT, ibdp,ap,ssat,sat,sat2课程辅导,国外大学本科硕士研究生博士课程论文辅导