&& to combine two conditions0 ≤ x checks if x is greater than or equal to 0x ≤ 10 checks if x is less than or equal to 10logical true if both conditions are truelogical false if either condition is falseNote: && is preferred for scalar comparisons as it uses short-circuit evaluation.