The correct order is as follows:
O(1), O(log n), O(n), O(n^2)

The names:
O(1): Constant
O(log n): Logarithmic
O(n): Linear
O(n^2): Quadratic

More worse complexities:
O(2^n): Exponential
O(n!): Factorial