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:
0.008
Explanation:
From the question, the parameters given are:
Velocity V = 5 m/s
Pressure = 10 pa
But pressure = F/A
10 = F/A
F = 10A
Substitute all the parameters into the formula below
Coefficient of viscosity (η) = F × r /[AV]
Where
F = tangential force,
r = distance between layers,
A = Area, and
V = velocity
(η) = 10A × 0.004 /[A × 5]
The A will cancel out
(η) = 10 × 0.004 /[5]
(η) = 0.04 /5
(η) = 0.008
Therefore, the coefficient of viscosity of the fluid is 0.008
Answer:
B because as a textile engineer, your job is to help design and create fabric, including the equipment and materials needed for fabrication.
Answer: False
Explanation: No, brass is not a ferrous alloy.
Ferrous alloys are those alloy which contain iron like cast iron, steel, strain-less steel, high carbon steel. Brass on the other hand does not contain any composition. of iron hence it can not be considered as a ferrous alloy. Brass comes under the category of non- ferrous made with a composition of copper and zinc, however their proportion is not strict and we can add other elements like aluminium or lead to alter its durability or corrosiveness.