Accountant 101
Contador, from the Latin computator, is an adjective that refers to the one who counts. The verb to count, for its part, has multiple meanings: it can refer to numbering or computing things; put someone on the number that corresponds to him; report an event; or consider.
As a noun, an accountant or accountant is an individual who applies, manages, interprets and records the accounting of a company or a person. Its objective is to keep the accounting history of its clients, produce internal reports or for third parties and provide useful information for making financial decisions.
Becoming an accountant requires a college degree course of study. Depending on the country, the title obtained is known as National Public Accountant, Certified Public Accountant or Bachelor of Accounting, among other possibilities.
For example: “Call the accountant: I just received a notice about a tax debt”, “My accountant recommended a category change for next year”, “We will have to ask the accountant to make a new Income Tax assessment ”.
A person can also receive the qualification of an accountant when he dedicates himself to telling stories : “My grandfather was a great storyteller : when we were children, my brothers and I spent hours listening to him”, “My children say that I am a good storyteller suspense ”.
A meter, on the other hand, can be a system, mechanism or device that shows a numerical sequence or that increases or decreases a number according to an input signal: “The gas operator is analyzing the consumption meter to see if it works correctly”, “The website counter indicates that we have received more than 2,000 visits in the last month.
The work of the accountant has gone from being purely manual, using folders and books, to computer science, thanks to the large number of specific applications that it currently has. This also gives you the possibility of being in direct contact with your customers and keeping them up to date with their situation second by second.
In the field of computer programming, a counter is a variable that is usually used in loops (also called a cycle, it is a statement that is executed a certain number of times, until the condition assigned to it is met). In this case, it is a memory space destined to count the number of repetitions of the code within the loop, and its utilities can be several.
The basic objective of a counter within a loop is to show that the maximum number of executions has been reached, in accordance with what is established by the condition ; for example: if you want to move 30 characters of a video game with a structured code in a loop, it is likely that the condition for it to end is “when it reaches lap number 30” and, to detect if it has been fulfilled, the counter is should increase by 1 each repetition, starting with 0.
It should be noted that within a loop there can be multiple counters. On the one hand, there is usually a main one, which is related to the condition as explained in the previous paragraph; but, for example, there may be a counter to find out the number of characters that have collided with a wall, another to count those who have died due to being intercepted by a missile on that lap, and so on.
Another distinction that can be made between the types of counter that are used in programming is that some are global (they exist throughout the entire code), others are created when starting a block and destroyed when exiting, some retain their value at over several frames (each frame of execution, generally more than 30 per second) and others, the most common, are reset each time they are used.