What is cheaper? Sphere collision checks or box collision checks?

Wouldn’t Sphere Collision checks be cheaper. I don’t think they’re checking the square root of the distance. A squared distance check should suffice. But for the box, wouldn’t it require multiple conditional checks? On second thought, that would work for sphere to sphere collision checks. I’m not sure about other scenarios.