Multiple choice

Execute next command if previous command true (or successful) is an example of?

  1. AND

  2. XOR

  3. OR

  4. NONE

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The logical AND operator (&&) executes the following command only if the preceding command returns a successful exit status (0). This is the standard way to chain commands that depend on the success of the previous one.