Answer:
25 mm = 0.984252 inches
Explanation:
Millimeter and inches are both units of distance. The conversion of millimeter into inches is shown below:
<u>1 mm = 1/25.4 inches</u>
From the question, we have to convert 25 mm into inches
Thus,
<u>25 mm = (1/25.4)*25 inches</u>
So,

Thus, solving we get:
<u>25 mm = 0.984252 inches</u>
The total present worth is $19,783.01
The present worth of a series of cash flow is the value of the cash flows in year 0 (today)
Cash flow in year 0 = 5330
Cash flow in year 1 = 0
Cash flow in year 2 = 0
Cash flow in year 3 = 13075 / (1.02)^3 = 12,320.86
Cash flow in year 4 = 2308 / (1.02)^4 = 2,132.24
Present worth = $19,783.01
A similar question was solved here: brainly.com/question/9641711?referrer=searchResults
Answer:
u_e = 9.3 * 10^-8 J / m^3 ( 2 sig. fig)
Explanation:
Given:
- Electric Field strength near earth's surface E = 145 V / m
- permittivity of free space (electric constant) e_o = 8.854 *10^-12 s^4 A^2 / m^3 kg
Find:
- How much energy is stored per cubic meter in this field?
Solution:
- The solution requires the energy density stored between earth's surface and the source of electric field strength. The formula for charge density is given by:
u_e = 0.5*e_o * E^2
- Plug in the values given:
u_e = 0.5*8.854 *10^-12 *145^2
u_e = 9.30777 * 10^-8 J/m^3
Answer: a) 135642 b) 146253
Explanation:
A)
1- the bankers algorithm tests for safety by simulating the allocation for predetermined maximum possible amounts of all resources, as stated this has the greatest degree of concurrency.
3- reserving all resources in advance helps would happen most likely if the algorithm has been used.
5- Resource ordering comes first before detection of any deadlock
6- Thread action would be rolled back much easily of Resource ordering precedes.
4- restart thread and release all resources if thread needs to wait, this should surely happen before killing the thread
2- only option practicable after thread has been killed.
Bii) ; No. Even if deadlock happens rapidly, the safest sequence have been decided already.
Full Question
1. Correct the following code and
2. Convert the do while loop the following code to a while loop
declare integer product
declare integer number
product = 0
do while product < 100
display ""Type your number""
input number
product = number * 10
loop
display product
End While
Answer:
1. Code Correction
The errors in the code segment are:
a. The use of do while on line 4
You either use do or while product < 100
b. The use of double "" as open and end quotes for the string literal on line 5
c. The use of "loop" statement on line 7
The correction of the code segment is as follows:
declare integer product
declare integer number
product = 0
while product < 100
display "Type your number"
input number
product = number * 10
display product
End While
2. The same code segment using a do-while statement
declare integer product
declare integer number
product = 0
Do
display "Type your number"
input number
product = number * 10
display product
while product < 100