Answer:
A) True
Explanation:
Yes this is true when length is creases the heat transfer coefficient decease with length.
The heat transfer(h) coefficient is varying with x by given expression
For Laminar flow

For turbulent flow

But when flow is in transitional state the heat heat transfer(h) coefficient is increases with x.But for laminar as well as turbulent flow h is decrease when x increases.
Answer:
F=1.47 KN
Explanation:
Given that
Diameter of plate = 25 cm
Height of pool h = 3 m
We know that force can be given as
F= P x A
P=ρ x g x h
Now by putting the values
P=1000 x 10 x 3
P= 30 KPa


F= 30 x 0.049 KN
F=1.47 KN
So the force on the plate will be 1.47 KN.
Answer:
// Program is written in C++
// Comments are used to explain some lines
// Only the required function is written. The main method is excluded.
#include<bits/stdc++.h>
#include<iostream>
using namespace std;
int divSum(int num)
{
// The next line declares the final result of summation of divisors. The variable declared is also
//initialised to 0
int result = 0;
// find all numbers which divide 'num'
for (int i=2; i<=(num/2); i++)
{
// if 'i' is divisor of 'num'
if (num%i==0)
{
if (i==(num/i))
result += i; //add divisor to result
else
result += (i + num/i); //add divisor to result
}
}
cout<<result+1;
}
Answer:D. Gunter's Chain
Explanation:I know this because a gunter's chain is used for plots of land to be accurately surveyed and plotted, for legal and commercial purposes.