Answer:
0.00650 Ib s /ft^2
Explanation:
diameter ( D ) = 0.71 inches = 0.0591 ft
velocity = 0.90 ft/s ( V )
fluid specific gravity = 0.96 (62.4 ) ( x )
change in pressure ( P ) = 0 because pressure was constant
viscosity = (change in p - X sin∅ ) / 32 V
= ( 0 - 0.96( 62.4) sin -90 ) * 0.0591 ^2 / 32 * 0.90
= - 59.904 sin (-90) * 0.0035 / 28.8
= 0.1874 / 28.8
viscosity = 0.00650 Ib s /ft^2
Answer:
4140 steel contains 0.4% C having higher yield strength and ultimate strength than the 1045 steel contains 0.45% C
Explanation:
we have given 4140 steel contains 0.4% C
we know here that 4140 steel is low steel alloy , and it have low amount of chromium , manganese etc alloying element
and these elements which are present in 4140 steel they increase yield strength and ultimate strength of steel
while in 1045 steel contains 0.45 % c is plain carbon steel
and it do not contain any alloying element
so that 4140 steel contains 0.4% C having higher yield strength and ultimate strength than the 1045 steel contains 0.45% C
Answer:
1. They needed to develop multiple components in software programs.
2. The ability to overlap the development to be more evolutionary in nature.
3. The need to be more risk-averse or the unwillingness to take risks led to the use of a spiral model.
Explanation:
Software development life cycle (SDLC) can be defined as a strategic process or methodology that defines the key steps or stages for creating and implementing high quality software applications.
In SDLC, a waterfall model can be defined as a process which involves sequentially breaking the software development into linear phases. Thus, the development phase takes a downward flow like a waterfall and as such each phase must be completed before starting another without any overlap in the process.
An incremental model refers to the process in which the requirements or criteria of the software development is divided into many standalone modules until the program is completed.
Also, a spiral model can be defined as an evolutionary SDLC that is risk-driven in nature and typically comprises of both an iterative and a waterfall model. Spiral model of SDLC consist of these phases; planning, risk analysis, engineering and evaluation.
<em>What motivated software engineers to move from the waterfall model to the incremental or spiral model is actually due to the following fact;</em>
- They needed to develop multiple components in software programs.
- The ability to overlap the development to be more evolutionary in nature.
- The need to be more risk-averse or the unwillingness to take risks led to the use of a spiral model.
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