Answer:
Register-it contains all the instructions that are present in the processor.
Memory location- it is the particular memory address where the data is stored.
Explanation: Difference between register and memory location are as follows :-
- Register are the found in the CPU internal storage and memory location is present on the RAM.
- Registers are faster in movement as compared to the memory location.
- Register has the capacity of holding of less data as compared to the memory location which can store data in large amount .
Answer:
Project management set of processes for risk management include, for coping with risk the project manager need to do the following:
Risk Planning
Risk Identification
Risk Analysis (Qualitative and Quantitative)
Risk Response Planning
Risk Monitoring and Control
Environmental Risks
External Risks
Design Risks
Engineering Services Risks
Right of Way Risks
Construction Risks
Project Management Risks
Organizational Risks
Other risks are : (article ITToolbox sources of risk)
Customer Risk
technical Risk
Delivery Risk
Explanation:
Answer:
Technology has played a huge a part in terms of progressing the economies of different countries. Technology has brought into action the globalized solutions to bring people across the globe together.
Regardless of the benefits, this technology has caused people to socialize less in real life. They have found ways to entertain themselves through technology and that has effected their social interactions greatly.
Answer:
The main benefit of the ordered list is that you can apply Binary Search( O( n log n) ) to search the elements. Instead of an unordered list, you need to go through the entire list to do the search( O(n) ).
The main cost of the ordered list is that every time you insert into a sorted list, you need to do comparisons to find where to place the element( O( n log n) ). But, every time you insert into an unsorted, you don't need to find where to place the element in the list ( O(1) ). Another cost for an ordered list is where you need to delete an element, you have an extra cost rearranging the list to maintain the order.