An administrator wants to find all files larger than 100MB in the /home directory. Which two commands or command sequences achieve this? (Choose two.)
Trap 1: find /home -type f -size +100000000c
Incorrect: `+100000000c` matches files larger than 100,000,000 bytes, which is about 95.4 MB, not 100 MB.
Trap 2: find /home -type f -size +100MB
Incorrect: `MB` is not a valid size suffix; find expects `M` for mebibytes or `k` for kibibytes.
Trap 3: find /home -type f -size 100M
Incorrect: `-size 100M` matches files exactly 100 MB in size, not larger than 100 MB.
- A
find /home -type f -size +100M
Correct: `+100M` uses the valid M suffix (mebibytes) with the `+` for greater than, matching files larger than 100 MB.
- B
find /home -type f -size +100000000c
Why wrong: Incorrect: `+100000000c` matches files larger than 100,000,000 bytes, which is about 95.4 MB, not 100 MB.
- C
find /home -type f -size +100MB
Why wrong: Incorrect: `MB` is not a valid size suffix; find expects `M` for mebibytes or `k` for kibibytes.
- D
find /home -type f -size +102400k
Correct: `+102400k` matches files larger than 102,400 kilobytes, which is exactly 100 MB (since 100 × 1024 = 102,400).
- E
find /home -type f -size 100M
Why wrong: Incorrect: `-size 100M` matches files exactly 100 MB in size, not larger than 100 MB.