2025 初中組必答題節錄 — 知識整理

適用組別:[初中+高中]

用途:把必答題常見的英文關鍵詞、標準短答及易錯點放在一起。決賽必答題宜以「關鍵字+一句完整答案」作答;不要只說一個模糊名詞。

30 秒必答速答表

Question Keyword / 題目關鍵詞Short Answer / 短答中文理解
HTTP port number80HTTP 預設使用 TCP port 80。
HTTPS port443HTTPS 預設使用 TCP port 443。
What is WAN?Wide Area NetworkWAN(廣域網)連接跨城市、跨地區或跨國的網絡。
What is a gateway?A device or address that connects a local network to other networks.Gateway(閘道)是本地網絡通往其他網絡的出口。
What is a bridge?A Layer 2 device that connects network segments using MAC addresses.Bridge(橋接器)按 MAC address 連接或分隔網絡區段。
What is a switch?A Layer 2 device that forwards frames using MAC addresses.Switch(交換器)按 MAC address 轉送 frame(訊框)。
Network Time ProtocolNTPNTP(網絡時間協定)讓網絡裝置同步時間。
Network wireEthernet cable / network cable常見有雙絞線 Ethernet cable;光纖用光傳送資料,適合較遠距離及高速連線。
Excel find maximum=MAX(range)例如 =MAX(A1:A10) 找出 A1 至 A10 的最大數值。
Excel average=AVERAGE(range)例如 =AVERAGE(B1:B10) 計算平均值。
Excel count numbers=COUNT(range)COUNT 只計算儲存格中的數值,不計文字或空白格。
Word select allCtrl + A全選文件內容。
Word skip to end of documentCtrl + End游標跳到文件最後。
Word boldCtrl + B把選取文字設為粗體。
Word underlineCtrl + U把選取文字加底線。
Python zip()Combines items from iterables by position.zip() 把多個 iterable(可迭代物件)同位置的元素配對。
Python isinstance()Checks whether an object is an instance of a type or class.isinstance() 檢查物件是否屬於指定資料類型或類別,結果為 TrueFalse
Python re libraryRegular expression library.re 是 Regular Expression(正則表達式)模組,用於搜尋、比對或取代文字模式。
Python SQLitesqlite3 / SQLite databaseSQLite 是輕量、嵌入式的關聯式資料庫;Python 常用 sqlite3 模組操作它。
What is Generative AI?AI that creates new content.Generative AI(生成式人工智能)可生成文字、圖片、聲音、程式碼等新內容。
What is Deep Learning?Machine learning using multi-layer neural networks.Deep Learning(深度學習)使用多層神經網絡從大量資料學習模式。
What is Big Data?Very large, fast, and diverse data sets.Big Data(大數據)常用 volume(大量)、velocity(高速)、variety(多樣)描述。
What is Blockchain?A distributed ledger of linked, verified blocks.Blockchain(區塊鏈)把資料記錄在相連、可驗證的區塊中,並由多個節點共同保存。
What is a digital footprint?The data trail left by a person's online activity.Digital footprint(數位足跡)是上網、發文、搜尋、登入或使用 App 留下的資料痕跡。

1. Network & Web(網絡與網站)— [初中+高中]

HTTP and HTTPS(HTTP 與 HTTPS)

  • HTTP: Hypertext Transfer Protocol(超文字傳輸協定);預設 port 是 80
  • HTTPS: HTTP over TLS/SSL(使用 TLS/SSL 保護傳輸的 HTTP);預設 port 是 443
  • 必答句式:HTTP uses port 80; HTTPS uses port 443.
  • 易錯點:HTTPS 保護傳輸中的資料,但不代表每個有鎖頭圖示的網站內容一定可信。

WAN, Gateway, Bridge and Switch(WAN、閘道、橋接器與交換器)

Term / 術語Core Function / 核心功能Easy-to-Miss Point / 易錯點
WAN(廣域網)Connects networks over a large geographical area(連接大範圍地區的網絡)WAN 不等於 Wi-Fi;Wi-Fi 是無線連接技術。
Gateway(閘道)Connects a local network to another network(連接本地網絡與其他網絡)家居網絡的 default gateway 通常是路由器的本地 IP。
Bridge(橋接器)Connects Layer 2 network segments(連接第 2 層網絡區段)Bridge 與 switch 都主要看 MAC address。
Switch(交換器)Forwards frames to the correct port using MAC addresses(按 MAC address 轉送訊框)Switch 不是 router;router 主要按 IP address 在不同網絡間路由。

NTP and Network Cable(NTP 與網絡線)

  • NTP(Network Time Protocol/網絡時間協定):把電腦、伺服器及網絡設備的時間校準到一致。時間正確有助於閱讀日誌、驗證憑證及追查事件。
  • Ethernet cable(乙太網絡線):常用的有線網絡傳輸線。雙絞線常見於一般設備;fiber optic cable(光纖)以光傳送資料,適合高速和長距離。

2. Office Software(辦公室軟件)— [初中+高中]

Excel Functions(Excel 函數)

Task / 題目意思Formula / 函數Example / 例子Reminder / 提醒
Find the maximum value(找最大值)MAX=MAX(A1:A10)找數字中最大的值。
Find the average(求平均值)AVERAGE=AVERAGE(A1:A10)只對數值求平均。
Count cells containing numbers(計算有數字的儲存格)COUNT=COUNT(A1:A10)文字、空白格不會被 COUNT 計入。

Word Shortcuts(Word 快捷鍵)

Shortcut / 快捷鍵Action / 動作中文提示
Ctrl + ASelect all(全選)全選整份文件內容。
Ctrl + EndGo to end of document(跳到文件結尾)是 End,不是 Ctrl + E;後者是置中。
Ctrl + BBold(粗體)B = Bold。
Ctrl + UUnderline(底線)U = Underline。

3. Basic Python & Data(基礎 Python 與資料)— [初中+高中]

zip()(配對迭代資料)

names = ["Amy", "Ben"]
scores = [80, 92]
list(zip(names, scores))
# [("Amy", 80), ("Ben", 92)]

中文解釋:zip() 按位置把資料配成一組;如果兩個資料長度不同,會以較短的一個為準停止配對。

isinstance()(檢查資料類型)

isinstance(5, int)       # True
isinstance("5", int)     # False

中文解釋:題目問 isinstance() 時,要答「檢查物件是否屬於指定類型或類別」,不是比較兩個值是否相同。

re and SQLite(正則表達式與 SQLite)

Tool / 工具Main Use / 主要用途中文提示
reRegular expression matching(正則表達式比對)可從文字中找符合規則的內容,例如電郵格式或電話號碼模式。
SQLite / sqlite3Embedded relational database(嵌入式關聯式資料庫)資料可儲存在單一資料庫檔案;不是大型獨立伺服器資料庫。

4. ICT in Daily Life(資訊科技在日常生活)— [初中+高中]

Concept / 概念One-Sentence Answer / 一句答案Safety / Exam Point / 安全或考試重點
Generative AI(生成式人工智能)AI that creates new content from learned patterns(從學習到的模式生成新內容的 AI)。生成內容要核實,不能因內容流暢便當作正確。
Deep Learning(深度學習)A type of machine learning using multi-layer neural networks(使用多層神經網絡的機器學習)。Deep learning 是 machine learning 的一類。
Big Data(大數據)Large, fast and diverse data requiring suitable processing(大量、高速、多樣而需適當處理的資料)。不只等於「資料很多」。
Digital Footprint(數位足跡)The data trail left by online activity(網上活動留下的資料痕跡)。發文、搜尋、定位及登入也可能留下足跡;分享前要想清楚。
Blockchain(區塊鏈)A distributed ledger made of linked, verified blocks(由相連、可驗證區塊組成的分散式帳本)。不等於所有加密貨幣;區塊鏈是可用於不同記錄情境的技術。

5. 10-Second Answer Drill(10 秒必答練習)

遮住右欄,先說英文關鍵詞,再說中文意思。

Prompt / 題目Target Answer / 目標答案
HTTP port?80
HTTPS port?443
Excel maximum function?MAX
Excel numeric-cell count function?COUNT
Word select all?Ctrl + A
Word underline?Ctrl + U
Python module for regular expressions?re
What forwards frames using MAC addresses?Switch
What synchronizes network time?NTP
What checks an object's type in Python?isinstance()

Source Notes(來源說明)

  • 題目清單:使用者提供的「2025 初中組必答題節錄」。
  • NotebookLM ITessential_Network比賽範圍與題型:確認初中組相關範圍,包括網絡、Office、基礎 Python、日常 IT 及網絡犯罪。
  • NotebookLM ITessential_Network資訊科技競賽溫習講義.pdf:提供 HTTP、DNS、網站前端及正則表達式等溫習脈絡。
  • NotebookLM ITessential_NetworkITE7_Chp13.pdf:提供資訊安全、加密、防火牆及分層防護脈絡。
  • NotebookLM 常識問答比賽.pdf 已顯示為 ready,但本輪全文檢索未於時限內回傳;因此本文件不把未讀取的 PDF 文字列作直接引文。
Built with LogoFlowershow