* **Problem** - Teachers are creating problems which are solved by students. When problem is solved then students submit their solution, this solution with all other informations (needed by worker) is called submission.
Handle incoming requests from php backend and forward them to actual workers, also handle answers from workers which has to be saved to the central database. (possibly files can be transfered through QM).
Program which executes and evaluates tasks given by QM. Its internally divided into net part (communication with QM) and evaluation part which evaluates task itself.
* **Submission** - It corresponds with job. But logically submission is larger term enclosing user submit of exercise (solution) and all other information which are needed for evaluation.
* **Job** - Basically structure which is transfered from QM (Aka. one request from QM is job). Internally set of tasks. Job itself has configuration which includes all information about this one submission. Typicaly, job is one standard submission, but there could be also benchmarking submission for configuring limits of problem or maybe submission for determining hardware and software configuration of given worker. This classification have no effect for evaluating the job.
* **Tests** - Tests are divided into groups which belongs to tasks, one task can have one or more test files. These test files can be send to standard input or just be there for the use from program.