
Explanation of Solution
Given Data:
Capacity of the disk = 800GB
Cost of SSD (800 GB) = $900
Cost of HDD (800 GB) = $300
Electricity cost = $0.10/kilowatt hour
Active time (both SSD and HDD) = 25% = 0.25%
To Find:
Cost to store 8TB of data for 5 years.
Steps necessary to reduce the cost.
From Figure “7.15”:
Power requirement for read/write operation = 14.4 Watts
Idle power requirement = 9.77 Watts
Solution:
Cost to store 8TB data for 5 years:
Specifications table:
Active watts (HDD) = 14.4 Watts (Given from figure “7.15”)
Idle watts (HDD) = 9.77 Watts (Given from figure “7.15”)
Active watts (SSD) = 5 Watts (Given from figure “7.17”)
Idle watts (SSD) = 0.35 Watts (Given from figure “7.17”)
Calculating idle percentage: Idle percentage is calculated by subtracting the active percentage from 1:
Filling specifications table:
Specifications | HDD | SSD |
Hours/year | 8,760 | 8,760 |
Cost per kWh | 0.1 | 0.1 |
Active percentage | 0.25 | 0.25 |
Active watts | 14.4 Watts | 5 Watts |
Idle percentage | 0.75 | 0.75 |
Idle watts | 9.77 Watts | 0.35 Watts |
Final table:
Given that: Hours active/year = 0.25 × 8760 = 2190hr
Calculation for HDD:
Calculating kWatts consumed active (HDD): It is calculated by multiplying number of hour’s active/year and power requirement for read/write operation:
Calculating idle/year (HDD): It is calculated by multiplying Hours/year and Idle percentage:
Calculating kWatts consumed idle (HDD): It is calculated by multiplying idle/year and idle watts:
Calculating total kWatts (HDD): It is calculated by adding kWatts consumed active and kWatts consumed idle:
Calculating Energy cost/year (HDD): It is calculated by multiplying Cost per kWh and total kWatts:
Calculating for 5 disks (HDD): It is calculated by multiplying Energy cost/year and 5:
Calculating cost for 10 disks (HDD): It is calculated by multiplying $300 and 10:
Calculation for SSD:
Calculating kWatts consumed active (SSD): It is calculated by multiplying number of hour’s active/year and power requirement for read/write operation:
Calculating idle/year (SSD): It is calculated by multiplying Hours/year and Idle percentage:
Calculating kWatts consumed idle (SSD): It is calculated by multiplying idle/year and idle watts:
Calculating total kWatts (SSD): It is calculated by adding kWatts consumed active and kWatts consumed idle:
Calculating Energy cost/year (SSD): It is calculated by multiplying Cost per kWh and total kWatts:
Calculating for 5 disks (SSD): It is calculated by multiplying Energy cost/year and 5:
Calculating cost for 10 disks (SSD): It is calculated by multiplying $300 and 10:
Filling final table:
Specifications | HDD | SSD |
Hours active/yr | 2190hr | 2190hr |
kWatts consumed active | 31.5 kWh | 10.95 kWh |
Hours idle/yr | 6570 hr | 6570 hr |
kWatts consumed idle | 64.2 kWh | 2.3 kWh |
Total kWatts | 95.7 kWh | 13.25 kWh |
Energy cost/yr | $9.75 | $1.325 |
× 5 disks | $47.85 | $6.625 |
× 10 disks | $3000 | $9000 |
Cost comparison:
The difference between the energy cost for HDD and SSD is $41.23.
The difference between the energy cost for 10 disks for both HDD and SSD is $6000.
Therefore, it will take nearly 145 years for the difference in the cost between the SSD and traditional magnetic disks to offset by the cost of electricity saved by SSD.
Want to see more full solutions like this?
Chapter 7 Solutions
Essentials of Computer Organization and Architecture
- It is possible to sort an array of n values using pipeline of n filter processes.The first process inputs all the values one at a time, keep the minimum, and passes the others on to the next process. Each filter does the same thing; it receives a stream of values from the previous process, keep the smallest, and passes the others to the next process. Assume each process has local storage for only two values--- the next input value and the minimum it has seen so far. (a) Developcode for filter processes. Declare the channels and use asynchronous message passing. Hint:Define an array of channels value[n] (int), and a set of filter processes Filter[i = 0 ton-1]. Each process Filter[i] (where 0 <= i <= n-2) receives a stream of integers through channelvalue[i], keeps the smallest, and sends all other integers to channel value[i+1]. The last processFilter[n-1] receives only one integer through channel value[n-1] and does not need to send anyinteger further.arrow_forwardIt is possible to sort an array of n values using pipeline of n filter processes.The first process inputs all the values one at a time, keep the minimum, and passes the others on to the next process. Each filter does the same thing; it receives a stream of values from the previous process, keep the smallest, and passes the others to the next process. Assume each process has local storage for only two values--- the next input value and the minimum it has seen so far. (a) Developcode for filter processes. Declare the channels and use asynchronous message passing. Hint:Define an array of channels value[n] (int), and a set of filter processes Filter[i = 0 ton-1]. Each process Filter[i] (where 0 <= i <= n-2) receives a stream of integers through channelvalue[i], keeps the smallest, and sends all other integers to channel value[i+1]. The last processFilter[n-1] receives only one integer through channel value[n-1] and does not need to send anyinteger further.arrow_forwardIt is possible to sort an array of n values using pipeline of n filter processes.The first process inputs all the values one at a time, keep the minimum, and passes the others on to the next process. Each filter does the same thing; it receives a stream of values from the previous process, keep the smallest, and passes the others to the next process. Assume each process has local storage for only two values--- the next input value and the minimum it has seen so far. (a) Developcode for filter processes. Declare the channels and use asynchronous message passing. Hint:Define an array of channels value[n] (int), and a set of filter processes Filter[i = 0 ton-1]. Each process Filter[i] (where 0 <= i <= n-2) receives a stream of integers through channelvalue[i], keeps the smallest, and sends all other integers to channel value[i+1]. The last processFilter[n-1] receives only one integer through channel value[n-1] and does not need to send anyinteger further.arrow_forward
- It is possible to sort an array of n values using pipeline of n filter processes.The first process inputs all the values one at a time, keep the minimum, and passes the others on to the next process. Each filter does the same thing; it receives a stream of values from the previous process, keep the smallest, and passes the others to the next process. Assume each process has local storage for only two values--- the next input value and the minimum it has seen so far. (a) Developcode for filter processes. Declare the channels and use asynchronous message passing. Hint:Define an array of channels value[n] (int), and a set of filter processes Filter[i = 0 ton-1]. Each process Filter[i] (where 0 <= i <= n-2) receives a stream of integers through channelvalue[i], keeps the smallest, and sends all other integers to channel value[i+1]. The last processFilter[n-1] receives only one integer through channel value[n-1] and does not need to send anyinteger further.arrow_forwardI need help: Challenge: Assume that the assigned network addresses are correct. Can you deduce (guess) what the network subnet masks are? Explain while providing subnet mask bits for each subnet mask. [Hint: Look at the addresses in binary and consider the host ids]arrow_forwardI would like to know if my answer statment is correct? My answer: The main difference is how routes are created and maintained across different networks. Static routing establishes router connections to different networks from the far left and far right. The Dynamic routing focus emphasizes immediate connection within the router while ignoring the other connections from different networks. Furthermore, the static routing uses the subnet mask to define networks such as 25.0.0.0/8, 129.60.0.0/16, and 200.100.10.0/30, which correspond to 255.0.0.0, 255.255.0.0, and 255.255.255.252. On the other hand, dynamic routing uses the wildcard mask to inverse the subnet mask, where network bits become 0 and host bits become 1, giving us 0.0.0.255, 0.0.255.255, and 0.0.0.3. Most importantly, the CLI commands used for Static and Dynamic routing are also different. For static routing, the “IP route” corresponds with the network, subnet mask, and next-hop IP address. In contrast, dynamic routing uses…arrow_forward
- 1. [30 pts] Match the items on the left with the memory segment in which they are stored. Answers may be used more than once, and more than one answer may be required. 1. Static variables 2. Local variables 3. Global variables 4. Constants 5. Machine Instructions 6. malloc() 7. String Literals Answer A. Code B. Static C. Heap D. Stackarrow_forwardBuild an Android App that shows a list of your favorite books' details. The App should have a set of java files that implement an adapter with RecyclerView. The details of the java files you need to create are described below. RecycleViewExample RHONDA BYRNE 2016 Listen to Your Heart: The London Adventure Ruskin Bond 2010 Business of Sports: The Winning Formula for Success Vinit Karnik 2022 A Place Called Home Preeti Shenoy 2018 Vahana Masterclass Alfredo Covelli 2016 The Little Book of Encouragement Dalai Lama 2021 Platform Scale: For A Post-Pandemic World Sangeet Paul Choudary 2021 Unfinished Priyanka Chopra Jonas 2018 1. The first java file should contain a data field which is in this case: Book_name, Author_name, Publication_year. 2. The second java file contains BookViewHolder. 3. The third java file contains the BookAdapter which is act as a bridge between the data items and the View inside of RecycleView. 4. The Mainactivity java file will contain some samples data to display.…arrow_forwardmodule : java Question3: (30 MARKS) Passenger Rail Agency for South Africa Train Scheduling System Problem Statement Design and implement a train scheduling system for Prasa railway network. The system should handle the following functionalities: 1. Scheduling trains: Allow the addition of train schedules, ensuring that no two trains use the same platform at the same time at any station. 2. Dynamic updates: Enable adding new train schedules and canceling existing ones. 3. Real-time simulation: Use multithreading to simulate the operation of trains (e.g., arriving, departing). 4. Data management: Use ArrayList to manage train schedules and platform assignments. Requirements 1. Add Train Schedule, Cancel Scheduled Train, View Train Schedules and Platform Management 2. Concurrency Handling with Multithreading i.e Use threads to simulate train operations, Each…arrow_forward
- Question D.4: FIFO Page Replacement Consider the following page reference string: e, c, b, e, a, g, d, c, e, g, d, a Considering 4 frames, fill in the following table and then answer how many page faults would occur with the FIFO page replacement algorithm. RS: reference string; FO: frame 0, F1: frame 1, etc. Hint: all frames are initially empty, so your first unique pages will all cost one fault each. Time 1234567891011 12 RS e cb e agd ce g d a FO F1 F2 F3 Page fault? b) Total # page faults: c) Briefly (1-2 sentences) explain Belady's Anomaly that can occur in FIFO Page Replacement.arrow_forwardConsider a system that uses a fixed-partition scheme, with equal partitions of size 2" bytes, and the main memory has 2¹8 bytes. A process table is maintained with a pointer to the resident partition for each resident process. How many bits are required for the pointer in the process table? Show all your steps.arrow_forwardUse the same semaphore notation shown above to describe how we can ensure the execution order of the following process execution graph: P6 P2 P7 P1 P3 P4 P5 Use all of the following semaphores in your answer: s1=0; s2=0; s3=0; s4=0; s5=0; s6=0;arrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





