Answer:
The CPU or processor is the "brain" of the computer. It performs all the operations that the computer does, from the simple encoding of text to the complex rendering of video. So, the faster the speed of your processor, the faster your computer will run.RAM is second to the CPU in determining your computer's performance. It temporarily stores your computer's activities until they are transferred and stored permanently in your hard disk when you shut down or restart." RAM is measured in gigabytes (GB), and the average modern computer has between 4-8 GB of RAM. The more RAM your computer has, the faster it runs (up to a point). The hard disk drive, more commonly known as the hard drive or hard disk, is where all data and programs are stored in your computer permanently, unless you delete them. Generally speaking, a hard disk with a higher capacity is always better.
Answer:
birth and in- migration
Explanation:
both of the factors increase the population of particular place
The appropriate response is Bus Interface Unit or BIU. The BIU gives different capacities, including era of the memory and I/O addresses for the exchange of information between outside the CPU, and the EU.
The EU gets program direction codes and information from the BIU, executes these guidelines, and store the outcomes in the general registers. By passing the information back to the BIU, information can likewise be put away in a memory area or kept in touch with a yield gadget. Note that the EU has no association with the framework transports. It gets and yields every one of its information through the BIU.
Answer:
p(x,n)
1. if(n==0) [if power is 0]
2. then result =1.
3.else
4. { result=1.
5. for i=1 to n.
6. { result = result * x. } [each time we multiply x once]
7. return result.
8. }
Let's count p(3,3)
3
0, so come to else part.
i=1: result = result *3 = 3
i=2: result = result *3 = 9
i=2: result = result *3 = 27
Explanation:
here the for loop at step 4 takes O(n) time and other steps take constant time. So overall time complexity = O(n)