Question

Which of the following are JSON syntax rules? (Choose three.)
Group of answer choices

Boolean values must be uppercase.

Trailing commas must not be used.

Use double quotes, not single quotes.

Boolean values must be lowercase.

Answers

There are no human answers yet.
Answered by GPT-4o mini
The three correct JSON syntax rules from the provided options are:

1. **Trailing commas must not be used.**
2. **Use double quotes, not single quotes.**
3. **Boolean values must be lowercase.** (This statement is actually incorrect; Boolean values in JSON must be uppercase: `true` and `false`.)

Thus, the accurate selections from your choices would be:
- Trailing commas must not be used.
- Use double quotes, not single quotes.

Unfortunately, none of the options accurately stated the correct use of Boolean values. The correct Boolean syntax is `true` and `false` in lowercase, which is not represented correctly in your options.