Cross-curricular Integrated Exam Questions for Year 10 WJEC Computer Science | 跨学科综合题型训练(WJEC 十年级计算机)

📚 Cross-curricular Integrated Exam Questions for Year 10 WJEC Computer Science | 跨学科综合题型训练(WJEC 十年级计算机)

In the WJEC GCSE Computer Science specification, understanding theoretical concepts is essential, but success in exams increasingly depends on applying knowledge to real-world, cross-curricular scenarios. Year 10 students are expected not only to write code and explain how a CPU works, but also to connect computing with mathematics, science, business, and ethical issues. This revision article provides a structured set of integrated question types, practical examples, and strategies to help you tackle hybrid exam problems confidently.

在 WJEC 普通中等教育证书计算机科学课程中,理解理论概念固然重要,但考试中的成功越来越依赖于将知识应用于现实世界、跨学科的情境。十年级学生不仅要会编写代码、解释中央处理器的工作原理,还要能将计算与数学、科学、商业和伦理问题联系起来。这篇复习文章提供了一套结构化的综合题型、实际示例和策略,帮助你自信地应对混合型考试题目。


1. Understanding the Integrated Approach | 理解综合题型方法

WJEC examiners design questions that blend computer science with other subjects to assess your ability to transfer skills. For example, a question might ask you to analyse a dataset from a geography field trip, write an algorithm to model population growth, or discuss the ethical implications of a health monitoring app. Recognising these cross-curricular links early in Year 10 will make your revision more efficient and help you achieve higher marks.

WJEC 考官设计的题目会将计算机科学与其他学科融合,以评估你知识迁移的能力。例如,一道题可能会要求你分析地理实地考察中的数据集、编写模拟人口增长的算法,或讨论健康监测应用程序的伦理影响。在十年级早期就识别出这些跨学科联系,能让复习效率更高并帮助你获得更高分数。

Integrated questions often feature a scenario introduction that provides context. You must extract the computational problem from the text, identify relevant data structures, and apply logical reasoning. Practice by highlighting keywords that indicate mathematical operations, scientific principles, or business constraints.

综合题型通常以一段场景介绍提供背景信息。你必须从文本中提炼出计算问题,确定相关的数据结构,并应用逻辑推理。可以通过标出指示数学运算、科学原理或商业约束的关键词来进行练习。


2. Mathematics: Binary, Hexadecimal and Conversion Skills | 数学:二进制、十六进制与转换技能

Number systems lie at the heart of computing. Exam questions frequently require you to convert between binary, denary, and hexadecimal, sometimes within a multimedia context such as colour depth or IP addressing. A typical integrated item might present a colour value in hex and ask you to calculate the binary representation needed for image processing.

数制是计算的核心。考试题目经常要求你在二进制、十进制和十六进制之间进行转换,有时会涉及多媒体情境,如色彩深度或 IP 地址。一道典型的综合题可能会给出一个十六进制的颜色值,要求你计算图像处理所需的二进制表示。

Beyond simple conversion, you should be able to perform binary addition and apply Boolean logic to filter data. Consider a scenario where a motion sensor outputs binary data that must be combined with time thresholds using AND/OR gates. The mathematical foundation allows you to design correct algorithms.

除了简单的转换,你还应当能够进行二进制加法,并应用布尔逻辑筛选数据。设想一种情景:运动传感器输出二进制数据,必须使用 AND/OR 门与时间阈值进行组合。数学基础使你能够设计出正确的算法。

Denary Binary Hexadecimal
25 0001 1001 19
170 1010 1010 AA
255 1111 1111 FF

The table above illustrates common conversions that are frequently tested. Being fluent in these decreases the time spent on one task and lets you focus on higher-order thinking in the same question.

上表展示了常考的基本转换。熟练掌握这些内容能减少单项任务的时间,让你在同一题目中更专注于高阶思维。


3. Mathematics: Algorithmic Formulae and Iteration | 数学:算法公式与迭代

Many WJEC problems ask you to express a mathematical formula as pseudocode or to trace an algorithm that models a real process. For instance, compound interest, projectile motion, or population growth can be coded using loops and arithmetic. You must be able to convert A = P × (1 + r)n into a repeat loop that updates the balance each year.

许多 WJEC 题目要求你将数学公式表达为伪代码,或追踪一段模拟真实过程的算法。例如,复利计算、抛体运动或人口增长都可以用循环和算术来编码。你必须能够将 A = P × (1 + r)n 转换为每年更新余额的重复循环。

Consider this cross-curricular challenge: a business studies case provides sales figures for five months, and you are asked to predict month six using a moving average. The algorithm will store data in an array, compute the mean of the last three months, and output the forecast. This tests both mathematical reasoning and array handling.

设想这样一个跨学科挑战:一个商学案例给出了五个月的销售数据,要求你使用移动平均法预测第六个月。算法将数据存储在数组中,计算最近三个月的平均值,并输出预测值。这同时考察了数学推理和数组操作能力。

Forecast = (data[3] + data[4] + data[5]) ÷ 3

When writing pseudocode, ensure you follow WJEC conventions: use for assignment, clear iteration structures, and indentation. You might also need to convert the formula to Python code in a later part of the question.

编写伪代码时,确保遵循 WJEC 规范:使用 进行赋值,采用清晰的迭代结构和缩进。在题目的后续部分,你可能还需要将公式转换为 Python 代码。


4. Physics: Logic Gates and Electronic Systems | 物理:逻辑门与电子系统

Logic gates bridge computing and electronics. Exam questions often embed a circuit diagram with AND, OR, and NOT gates and then ask you to complete a truth table or write a Boolean expression. In an integrated problem, you might be given a temperature sensor and a timer that must both signal ‘1’ to activate a cooling fan; this is modelled with an AND gate.

逻辑门是计算与电子学之间的桥梁。考试题目经常嵌入包含 AND、OR 和 NOT 门的电路图,然后要求你完成真值表或写出布尔表达式。在一个综合题中,可能会给出一个温度传感器和一个定时器,两者必须同时输出 ‘1’ 才能启动冷却风扇;这可以用 AND 门来模拟。

For a home automation scenario, the logic can be written as Alarm = (Smoke ∧ Window_open) ∨ Manual_trigger. You need to translate this into a gate diagram and evaluate the output for given inputs. This combines physics understanding of sensors with computer logic.

对于家庭自动化场景,逻辑可以写作 Alarm = (Smoke ∧ Window_open) ∨ Manual_trigger。你需要将其转换为门电路图,并根据给定输入评估输出。这结合了传感器的物理学知识与计算机逻辑。

Smoke Window_open Manual Alarm
0 1 0 0
1 1 0 1
0 0 1 1

Being able to switch between truth tables, Boolean algebra, and circuit symbols is a key skill. Practice with past papers that ask you to design a watering system based on soil moisture and light levels – a perfect physics-computer science crossover.

能够在真值表、布尔代数和电路符号之间切换是一项关键技能。利用真题进行练习,例如要求你根据土壤湿度和光照强度设计灌溉系统——这正是一种物理与计算机科学的完美交叉。


5. Science: Data Logging and Analogue-to-Digital Conversion | 科学:数据记录与模数转换

Many WJEC scenarios involve collecting scientific data through sensors, such as pH, pressure, or ECG readings. Since computers work digitally, analogue signals must be converted. You must explain how an ADC samples the signal at regular intervals and assigns a binary value to each sample. A chemistry experiment monitoring reaction temperature over time is a classic example.

许多 WJEC 情境涉及通过传感器收集科学数据,例如 pH 值、压力或心电图读数。由于计算机以数字方式工作,模拟信号必须进行转换。你必须解释模数转换器 (ADC) 如何按固定间隔对信号采样,并为每个采样分配一个二进制值。一个监测反应温度随时间变化的化学实验就是典型例子。

Questions may provide a table of time and voltage and ask you to determine the sampling rate, calculate file size (size = sample rate × bit depth × duration), or write a program to analyse when the reaction reached its peak. This integrates data representation with practical science.

题目可能提供一个时间与电压的表格,要求你确定采样率、计算文件大小(大小 = 采样率 × 位深度 × 持续时间),或编写程序分析反应何时达到峰值。这将数据表示与实际科学融为一体。

Learners often forget the link between bit depth and precision. Remind yourself: with a 4-bit ADC you get 24=16 possible values, which might miss small changes in temperature. Using a 10-bit converter yields 1024 levels, showing how computing choices affect experimental accuracy.

学习者常常忘记位深度与精度之间的联系。提醒自己:使用 4 位 ADC 只能得到 24=16 个可能值,可能会遗漏温度的微小变化。而使用 10 位转换器可产生 1024 个层级,这表明计算选择如何影响实验精度。


6. Business: Spreadsheet Modelling and Profit Maximisation | 商业:电子表格建模与利润最大化

Spreadsheets are an excellent example of cross-curricular application. In a business case study, you might be asked to develop a model that calculates break-even points or profit margins. From a computer science perspective, you need to understand formulas, cell references (absolute and relative), and conditional formatting as programming in a declarative language.

电子表格是跨学科应用的绝佳示例。在一个商学案例研究中,你可能会被要求开发一个计算盈亏平衡点或利润率的模型。从计算机科学的角度,你需要将公式、单元格引用(绝对和相对)以及条件格式理解为一种声明式语言中的编程。

A typical integrated task: given fixed costs, variable costs per unit, and selling price, create a spreadsheet to find the number of units to reach break-even. Then, write a Python program that reads the same inputs and outputs the profit for different quantities. Compare the logical structure of both solutions.

一个典型的综合任务:给定固定成本、单位可变成本和销售价格,创建一个电子表格来找到达到盈亏平衡所需的产品数量。然后,编写一个 Python 程序,读取相同的输入,输出不同产量下的利润。比较两种解决方案的逻辑结构。

Be ready to evaluate the model’s limitations – for instance, the spreadsheet assumes linearly increasing costs, while reality may involve bulk discounts. This critical evaluation scores high marks in WJEC extended-response questions.

要准备好评估模型的局限性——例如,电子表格假设成本呈线性增长,而现实中可能涉及批量折扣。这种批判性评估在 WJEC 的扩展答题中能获得高分。


7. Geography: GIS and Environmental Modelling | 地理:地理信息系统与环境建模

Geographic Information Systems (GIS) combine maps with databases. WJEC questions could present a scenario where you analyse pollution data points overlaid on a town map. You need to use SQL-like queries to extract records where the pollutant level exceeds a threshold, then suggest how to visualise the data using colour coding.

地理信息系统 (GIS) 将地图与数据库结合在一起。WJEC 题目可以呈现这样一个场景:你需要分析叠加在城镇地图上的污染数据点。你需要使用类似 SQL 的查询来提取污染物水平超过阈值的记录,然后建议如何使用颜色编码将数据可视化。

This tests your understanding of databases (fields, primary keys, queries) and data representation. For instance, the table Pollution (Station_ID, Longitude, Latitude, PM2.5, Date) could be queried to find hotspots. The spatial thinking connects clearly to geography curricula while reinforcing SQL syntax.

这考察你对数据库(字段、主键、查询)和数据表示的理解。例如,可以查询 Pollution (Station_ID, Longitude, Latitude, PM2.5, Date) 表来找出热点区域。空间思维与地理课程清晰相连,同时强化了 SQL 语法。

A more extended task might require calculating the average PM2.5 for each region using Python’s file handling, reading CSV data exported from the GIS. This blends coordinate geometry, environmental science, and programming.

更进一步的扩展任务可能要求使用 Python 的文件处理功能,读取从 GIS 导出的 CSV 数据,计算每个区域的平均 PM2.5。这融合了坐标几何、环境科学与编程。


8. Ethics, Law and Society | 伦理、法律与社会

Every major WJEC unit includes ethical and legal implications. Cross-curricular links with PSHE and citizenship are strong. You might be asked to discuss the impact of a health tracking app in terms of data privacy, referencing the GDPR. The discussion must show awareness of both technical security (encryption, access rights) and social responsibility.

每一个主要的 WJEC 单元都包含伦理和法律的考量。与 PSHE 和公民教育的跨学科链接很紧密。你可能被要求讨论一个健康追踪应用在数据隐私方面的影响,并引用《通用数据保护条例》(GDPR)。讨论必须同时展示对技术安全(加密、访问权限)和社会责任的认知。

When tackling such questions, structure your answer with a balanced view: benefits of data analysis for medical research versus risks of unauthorised sharing. Mention computing concepts like anonymisation and end-to-end encryption. Always conclude with a justified recommendation.

在回答这类问题时,构建一个平衡的观点:数据分析对医学研究的好处,与未经授权共享的风险。提及匿名化和端到端加密等计算概念。始终以一个有理有据的建议作为结论。

Linking to business, you could discuss how targeted advertising algorithms use personal data, raising questions about informed consent. Embedding technical vocabulary (‘cookie tracking’, ‘behavioural profiling’) in a humanities-style argument shows higher-order synthesis.

与商学相联系,你可以讨论定向广告算法如何使用个人数据,从而引发关于知情同意的问题。在人文社科式的论证中嵌入技术词汇(”cookie 追踪”、”行为画像”)能展现高阶综合能力。


9. Cross-curricular Design Challenge: Smart Garden System | 跨学科设计挑战:智能花园系统

A favourite WJEC project-style question asks you to design a system that solves a real-world problem. Let’s synthesise skills: a smart garden that waters plants automatically based on soil moisture and weather forecast. You will need sensors (science), a microcontroller with ADC (electronics), a decision algorithm (computing), and a mobile app interface (HCI).

WJEC 钟爱的一类项目式问题要求你设计一个解决现实问题的系统。我们来综合各项技能:一个根据土壤湿度和天气预报自动浇水的智能花园。你需要传感器(科学)、带 ADC 的微控制器(电子学)、决策算法(计算)和移动应用界面(人机交互)。

Draw a system diagram showing inputs (moisture sensor, Wi-Fi weather data), processing (rules e.g. ‘if moisture < 30% AND rain probability < 40% then pump on'), and outputs (pump

Published by TutorHao | Year 10 Computer Science Revision Series | aleveler.com

更多咨询请联系16621398022(同微信)

Comments

屏轩国际教育cambridge primary/secondary checkpoint, cat4, ukiset,ukcat,igcse,alevel,PAT,STEP,MAT, ibdp,ap,ssat,sat,sat2课程辅导,国外大学本科硕士研究生博士课程论文辅导

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Discover more from aleveler.com

Subscribe now to keep reading and get access to the full archive.

Continue reading