The valid conditional operator
D
Correct answer
Explanation
In shell test constructs and conditionals, -eq is the valid integer comparison operator. -NE, -GT, and -LT are not standard shell operators - the correct forms are -ne, -gt, and -lt (lowercase). String comparisons use = and !=.