Answer:
windows xp
Explanation:
I think because it is not fast and don't play the games and programs which have higher requirements
Answer:
I never thought of it ike that, the whole fate of the universe just changed before me
Explanation:
Answer:
Option B is correct.
Explanation:
Earlier when the computer network didn't meet with the requirements, it was too difficult to store data safely and even to access the data, it required too much effort.
Now with the help of a well-designed computer network, we can keep the data with proper protection and we can easily access it whenever we need it.
With the Improvements in computer networks, We can create a huge data store and keep the different data in different parts which will be saved in the server and the benefit is that if data is crashed, we can easily retrieve it from the server.
Answer:
Differences between arrays and linked list are as following:-
- Arrays store elements in contiguous memory location while the linked list does not store elements at contiguous memory location it connects nodes at different memory location.
- Array has index to directly access the elements there are no indexes in linked list to directly access the elements.
- Linked list contains Nodes which contains the data and the address of the next Node while the array contains only the data in the block.
- Traversal over the arrays is easy while the traversal over the linked list is difficult as compared to arrays.