True however it’s also depends on where you live but for this purpose it’s true
void minMax(int a, int b, int c, int*big, int*small)
{
if(a>b && a >c){
*big = a;
if(b>c)
*small = c;
else
*small = b;
}
else if (b>a && b>c){
*big = b;
if(a>c)
*small = c;
else
*small = a;
}
else{
*big = c;
if(a>b)
*small = b;
else
*small = a;
}
}
Answer:
scheduling
Explanation:
Scheduling- it is referred to as assigning a task to complete the goal or work on time. he works can include data flow, processing of data, etc.
There are two main types of scheduling
1) Preemptive process
2) Non- preemptive process
Preemptive process - in this process, priority is given to important tasks rather than less important tasks. the current task can be held for an important task
Non-preemptive process - It is referred to that process when the predefined schedule follows. In this process, next task executed only when current task finish
Answer:
I say when u don't know the answer completly.
Answer: (c)All others answers
Explanation: Stack ADT is the group of the objects that are present to work according to the last in first out strategy for the abstract data types. It works on the insertions and deletion of the elements that is referred as the push and pop action.
The ADT stacks can works with arrays, links list as well as vectors for the operation .Therefore, the correct option is option(c)