Consider the three code snippets presented in the table below:
| Example 1 | Example 2 | Example 3 |
|---|---|---|
01101000 00000010 | ADD R0, R1, #5 | def scale(v): |
10001111 00000100 | STR R0, [R2] | return [x * 5 for x in v] |
Select the option that correctly describes the classification of these code snippets.
None of the examples are written in a low-level language.
Exactly one of the examples is written in a low-level language.
Exactly two of the examples are written in a low-level language.
All three of the examples are written in a low-level language.