Answer:
The correct answer to the following question will be "Operating system".
Explanation:
- An operating system is a machine software that handles hardware of a computer, computing assets and delivers basic services to software programs.
- It is an intermediary between such users and computer hardware.
- It also helps you to interact with your machine without learning how to use your language of the computer.
Therefore, it will be the right answer.
Answer:
The typedef struct is as follows:
typedef struct jumper_t {
char name[16];
double tries[N_TRIES];
double best_jump;
double deviation;
} jumper_t;
The declaration of jlist is:
jumper_t jlist[10];
Explanation:
This defines the typedef structure
typedef struct jumper_t {
The following declares the variables as stated in the question
<em> char name[16];
</em>
<em> double tries[N_TRIES];
</em>
<em> double best_jump;
</em>
<em> double deviation;
</em>
}
This ends the typedef definition
jumper_t;
(b) The declaration of array jlist is:
jumper_t jlist[10];
Answer:
The answer is A I hope this helps, if not I apologize.
Explanation:
The managers at Peter’s company have an Autocratic environment.
<u>Explanation:</u>
The managers who are autocratic in nature make decisions on their own. They will never get insights of their employees and they will not take the inputs of them in taking any decisions. This type of management is suitable in an organisation where there is an urgent need to taking decisions to any matter.
Managers who are autocratic in nature will make decisions without consulting anyone's advice. This type suits those organisations wherein there are very less number of employees. Here, the manager of Peter did not consulted peter in making decisions related to him, the environment is authoritarian or autocratic.
Answer:
Both C++ and Pascal uses objects.