Answer:
Multitasking is a process in which we do multiple task at a time.
In computing system, multitasking is the concept of performing different types of multiple task and process over a certain period of time by executing simultaneously.
Operating system basically allow various task to run simultaneously by the user. In an operating system, each task consume storage system and all the other resources.
Multitasking function facilitate memory isolation in the processor and also supported different levels of security system in the operating system. For example, "a programmer working on any program in a system and as well as listening the music then, it perform multiple task at the same time".
A
because if you leave certain metals in the rain they tarnish or rust. think about how if you leave a bike in the rain for too long it will start to rust on the metal parts
Answer:
3.WDM
Explanation:
WDM ( wavelength division multiplexing ) involves signals composed of light beams WDM is used in communication where fibers are used it is used for multiplexing of number of carrier signals which are made of optical fibers by using different wavelength of laser light it has different wavelength so this WDM is used for signals composed of light beams it has property of multiplexing of signal
Answer:
struct node{
student data;
node* next;
};
Explanation:
The above written is the segment of code is the structure of node of the linked list.The data of the node is type student.So the data of the node of the linked list will consist of the student details and the next is the pointer which holds the address of the next node.