問題詳情
75. SMTP (Simple Mail Transfer Protocol) is a purely ASCII text-based protocol, whichimplies it can only transfer ASCII texts. However, most users often attach multimediafiles, which are definitely not text files, in their emails. Which is the correct descriptionabout the email attachment?
(A) Because the attachment file can be encoded into texts and therefore it can bedelivered though SMTP.
(B) Because SMTP is a legacy protocol and is extended to a new protocol called IMAP(Internet Message Access Protocol), which supports binary file attachment and iswidely used nowadays.
(C) Because most email clients will create additional side channels to the emailreceivers. That is, the attached files are delivered though different channels.
(D) None of the above.
參考答案
答案:A
難度:計算中-1
書單:沒有書單,新增
用户評論
【不叫賭俠的陳小刀】評論
關於電子郵件附件的正確描述是:(A) Because the attachment file can be encoded into texts and therefore it can be delivered though SMTP.(A) 因為附件文件可以編碼成文本,所以可以通過SMTP傳送。雖然 SMTP 本身是一種基於文本的協議,但它並不限制電子郵件附件的內容只能是 ASCII 文本。相反,可以使用 Base64 等編碼方案對電子郵件附件進行編碼,將二進制數據轉換為 ASCII 文本。這種編碼允許將二進製文件(例如多媒體文件或任何其他類型的文件)附加到電子郵件並使用 SMTP 進行傳輸。當電子郵件客戶端發送帶有附件的電子郵件時,它會使用適當的編碼方案將二進製文件編碼為文本。接收電子郵件客戶端然後解碼編碼的附件以檢索原始二進製文件。此過程允許通過 SMTP 傳輸非文本文件。選項 (B) 不正確,因為 IMAP 不是 SMTP 的擴展。它是一個單獨的協議,用於從郵件服務器檢索電子郵件。IMAP 確實支持電子郵件附件的傳輸,但它不能替代 SMTP。選項 (C) 不正確,因為電子郵件附件通常作為電子郵件本身的一部分發送。傳送附件時不涉及單獨的側通道。