Files

48 lines
695 B
Markdown
Raw Permalink Normal View History

---
id: 5e7b9f0e0b6c005b0e76f07b
title: 'ウェブサービス: XML'
challengeType: 11
videoId: _pZ0srbg7So
bilibiliIds:
aid: 761920032
bvid: BV1n64y1x7KW
cid: 377332379
dashedName: web-services-xml
---
# --question--
## --text--
次の XML で何が間違っていますか?
```xml
<person>
<name>Chuck</name>
<phone type="intl">
+1 734 303 4456
<email hide="yes" />
</person>
```
## --answers--
email タグに終了タグがない。
---
スペースの記述が原因で XML が無効になる。
---
phone タグに終了タグがない。
---
プレーンテキストは UTF-8 を使用してエンコードする必要がある。
## --video-solution--
3