Chapter 3: High-Frequency Application

Key Vocabulary

English / 英文中文Simple Meaning / 簡單意思
predict預測say what will happen
pattern模式a repeated question form
primarily主要地mainly
(第三章:高頻應用)

Common question types, typical scenarios, common variations. This chapter is about how knowledge gets packaged into questions — drill high-frequency medium questions first, don't jump to the hardest ones.

中文快速導讀:本章練習「題目怎樣問」。先做埠號、Python 輸出、HTML/CSS、Office 操作及網絡概念;答錯時不要只背答案,要找出題目是在問「用途」、「快捷鍵」、「輸出結果」還是「哪一層」。


1. Past-Paper Topic Distribution(歷屆真題主題分佈,依 2022、2023 統計)

Topic / 主題Frequency / 頻率Question Pattern / 出題模式
Ports(Port/埠號)Very high"which port does X use" or reverse lookup from port number
CSS (box model/flex/grid/selectors/fonts)HighGiven a snippet, ask the effect or attribute purpose
Python output predictionHighGiven a print() snippet, predict output — focus on //, %, logic operators
Logic operators (and/or/xor/not)HighEvaluate an expression, often mixing multiple operators
HTML (tags/tables/input)Medium-highTag purpose or attribute effect
Word/Excel/PowerPoint operationsMedium-highShortcut keys or specific feature operation
Tech company business ID(企業業務辨識)Medium-highWhich company does X, or what is company Y's product called
Number system conversionMediumConvert a given number
Network protocols/modelsMediumOSI/TCP-IP concept questions

Takeaway(結論): Ports, CSS, Python output prediction, and logic operators account for over half of preliminary written questions — drill these four first if short on time.


2. Typical Question-Type Drills(典型題型練習,先答再看解析)

Port lookup type(Port/埠號型)

  1. What TCP port does SMTP default to?
  2. What port does DNS use — TCP or UDP?
  3. What port does HTTPS use?

Answer key(解析): 25 / 53 (both TCP and UDP) / 443. Fastest approach: memorize a mnemonic rather than each port individually.

Python output prediction type(Python 輸出預測型)

  1. print(10 // 3) → ?
  2. print(10 % 3) → ?
  3. False and True → ?
  4. 5 ^ 3 (XOR) → ?

Answer key: 3 / 1 / False / 6 (101 XOR 011 = 110). Common trap: confusing // (floor division, drops decimals) with / (float division), or forgetting 0 counts as False in boolean logic.

Subnet mask calculation type(子網路遮罩計算型)

  1. A network needs to fit 30 devices — what's the minimum subnet mask?
  2. Same, but for 100 devices?

Answer key: 30 devices → 2⁵−2=30 exactly fits, n=5, mask 255.255.255.224 (/27); 100 devices → 2⁷−2=126 suffices, n=7, mask 255.255.255.128 (/25). Method detailed in Chapter 2, Concept 2.

Company business ID type(企業業務辨識型)

  1. What's the primary business of Alibaba, Tencent, Huawei, Baidu, and iFLYTEK respectively?
  2. What are Alibaba Cloud's and Tencent Cloud's elastic VM services called?
  3. What are Huawei's and Baidu's self-developed AI models/platforms called?

Answer key: See the table in Chapter 1, Section 8. Technique: memorize each company's core business first (Alibaba=e-commerce, Tencent=social/gaming, Baidu=search, Huawei=telecom equipment, iFLYTEK=voice), then attach the cloud-service and AI-model brand names.


3. NotebookLM Scenario Quiz(10 questions)

(NotebookLM 情境測驗卡,中文原題已翻譯為英文為主)

These 10 questions were auto-generated by NotebookLM directly from the ITE7/ITN source PDFs — closer in style to real exam packaging.

中文題意對照(只輔助理解英文題幹)

Question / 題號中文題意
1OSI 模型中,哪一層負責資料分割、流量控制及可靠的端到端傳送?
2Python 的 10 // 3 會得到甚麼結果?
3CPU 底部有針腳並插入主機板插槽的封裝叫甚麼?
4Excel 選取多格後,要一次填入相同內容,按哪個快捷鍵?
5哪一種惡意軟件可自行複製並利用漏洞傳播,不一定需要使用者操作?
6IPv6 中代表本機自己的 loopback(回環)地址是甚麼?
7Python 建立物件時自動呼叫的類別初始化方法是甚麼?
8廠商尚未修補、而攻擊者已利用的漏洞叫甚麼?
9哪個 OSI 第 2 層裝置會按 MAC address 轉送 frame,並隔離 collision domain?
10CSS Box Model 中,content 與 border 之間的空間叫甚麼?
  1. In the OSI model, which layer handles segmentation, flow control, and reliable end-to-end delivery?(哪一層負責資料分割) A. Network B. Transport C. Data Link D. Session  → B. Transport is the first layer to achieve host-to-host communication, and includes TCP and UDP.

  2. In Python, what does 10 // 3 evaluate to? A. 3.333… B. 1 C. 3 D. 3.0  → C. // computes the quotient and drops the decimal part.

  3. For CPU packaging, if pins sit on the bottom of the processor and insert into the motherboard socket, what's this architecture called? A. LGA B. PGA C. BGA D. DIP  → B (Pin Grid Array). Pins on the CPU = PGA; pins on the socket = LGA.

  4. In Excel, after selecting multiple cells, which key combo fills them all with the same content at once? A. Ctrl+D B. Ctrl+Enter C. Alt+Enter D. Ctrl+Shift+Enter  → B. Ctrl+D is fill-down, a different action.

  5. Which type of malware is typically self-replicating and can exploit vulnerabilities automatically, without needing user action? A. Virus B. Worm C. Trojan Horse D. Ransomware  → B (Worm). A virus needs a host file to attach to; a worm replicates and spreads independently.

  6. In IPv6 addressing, what's the loopback address representing the host itself? A. 127.0.0.1 B. ::1 C. fe80::1 D. FF02::1  → B. IPv4's loopback is 127.0.0.1; IPv6's equivalent is ::1.

  7. In Python OOP, which special method is the class initializer, automatically called when an instance is created? A. __new__ B. __init__ C. __main__ D. __call__  → B.

  8. In information security, when a vendor discovers an unknown, unpatched vulnerability already being exploited by attackers, what's this called? A. Man-in-the-middle attack B. Zero-day vulnerability C. DoS attack D. Social engineering  → B.

  9. Which network device operates at OSI Layer 2, forwards frames based on MAC address, and isolates collision domains? A. Hub B. Switch C. Router D. Repeater  → B (Switch). A hub broadcasts without addressing; a router forwards at Layer 3 based on IP.

  10. In the CSS Box Model, what's the space between content and border called? A. Margin B. Padding C. Outline D. Offset  → B.


4. Scope Completion Scenario Drills(範圍補強情境練習)

Junior & Senior(初中+高中)

  1. In Excel, you select five cells and want to enter the same new value into all of them at once. Which shortcut should you use?
    Ctrl+Enter. Ctrl+D has a different purpose: it fills down from the top cell.

  2. A message says, “Your account will close in 10 minutes. Click here and enter your verification code.” What is the safest first action?
    → Do not use the link or share the code. Open the official app or website yourself and verify the request.

  3. A smart sensor sends room-temperature data to a phone app. Which concept best describes this system, and what privacy check should you make?
    → IoT(Internet of Things/物聯網). Check what data and permissions the app collects.

  4. A map app requests location permission. Which device function is mainly involved, and why should you review the permission?
    → GPS(Global Positioning System/全球定位系統). Location data can reveal where a device is, so enable it only when needed.

  5. A school computer has a firewall, encrypted storage, separate user permissions and a locked room. What security principle does this show?
    → Layered defence(分層防護). Each control protects a different part of the system; one control is not enough.

Senior-only(高中追加)

  1. Which service translates a domain name such as example.com into an IP address?
    → DNS(Domain Name System/網域名稱系統). HTTPS encrypts web traffic; it does not perform DNS translation.

  2. A question asks for the current name of a Mainland company’s AI product. What should you confirm before memorising it?
    → The exact name, category, function, and the as-of date from an official or reliable source. Product names and versions can change.


5. Final-Round Required-Answer / Buzzer Scenarios(決賽必答/搶答典型情境)

The final round splits into required-answer questions (30 points each(每題 30 分)) and buzzer questions (10-second time limit(限時 10 秒), correct scores, wrong deducts). Required-answer questions resemble preliminary MCQs but cover a wider range; buzzer questions favor single-fact instant recall — e.g. "what's Alibaba Cloud's elastic VM called," "what's the IPv6 loopback address" — things you can answer in one breath. For buzzer-pace practice, see the timed drill in Chapter 5.

Built with LogoFlowershow