Answer:

Explanation:
To solve this problem we use the expression for the temperature film

Then, we have to compute the Reynolds number

Re<5*10^{5}, hence, this case if about a laminar flow.
Then, we compute the Nusselt number

but we also now that

but the average heat transfer coefficient is h=2hx
h=2(8.48)=16.97W/m^{2}K
Finally we have that the heat transfer is

In this solution we took values for water properties of
v=16.96*10^{-6}m^{2}s
Pr=0.699
k=26.56*10^{-3}W/mK
A=1*0.5m^{2}
I hope this is useful for you
regards
Answer:
275 Kelvin
Explanation:
Coefficient of Performance=11



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.
Answer:
Explanation:
1) C program file addressOfScalar.c
#include <stdio.h>
int main()
{
//intialize a char variable, print its address and the next address
char charvar = 'a';
printf("address of charvar = %p\n", (void *)(&charvar));
printf("address of charvar - 1 = %p\n", (void *)(&charvar - 1));
printf("address of charvar + 1 = %p\n", (void *)(&charvar + 1));
//intialize a int variable, print its address and the next address
int intvar = 1;
printf("address of intvar = %p\n", (void *)(&intvar));
printf("address of intvar - 1 = %p\n", (void *)(&intvar - 1));
printf("address of intvar + 1 = %p\n", (void *)(&intvar + 1));
}
In C programming language, an int variable takes 4 bytes of memory. So any arithmetic on integer address, always considers it as 4 bytes of data. So intvar-1 refers to a location 4 bytes before intvar's address and intvar+1 refers to 4 bytes after intvar's address.