Wikipedia gives us the following defintion of time complexity:
"In computer science, the time complexity is the computational complexity that describes the amount of time it takes to run an algorithm. Time complexity is commonly estimated by counting the number of elementary operations performed by the algorithm, supposing that each elementary operation takes a fixed amount of time to perform."
Now what are these elementary operations ? Are they arithmetic operations or some simpler operations ?
Thanks in advance!