Select one option to show the option that is true about the code snippets in Figure 1.
| Example 1 | Example 2 | Example 3 |
|---|---|---|
x = 10 | int x = 10; | MOV R1, #10 |
y = 20 | int y = 20; | MOV R2, #20 |
if x < y: | if (x < y) { | CMP R1, R2 |
print(x) | cout << x; | BGE label |
} | OUT R1 | |
label: |
None of the examples of code are in a low-level language.
Only one of the examples of code is in a low-level language.
Only two of the examples of code are in low-level languages.
All three of the examples of code are in low-level languages.