Answer:
Make decisions such as greeting a user depending on the time of day. Example: saying good morning while it is morning but saying good afternoon to the user only when it is the appropriate time.
Explanation:
I have used decision making methods in various programs to greet users, and determine whether to do one thing or another based on values passed to the program
If you have any questions feel free to ask me and I will do my best to help and explain! :)
Answer:
σ =20700 MPa
Explanation:
Answer is in the following attachment
Answer:
//Function is written using C++ Programming Language
// Comments are used for explanatory purpose
// The main method is not included
using namespace std;
// Declare arraySum with two arguments. The first represents the array name while the other
// Represents the number of elements
int arraySum(int arr[], int n)
{
int total = 0; // declare and Initialise total to 0
// Iterate through the array to calculate sum
for (int i = 0; i < n; i++) {
total += arr[i];
}
return total;
}
Answer:
1) Dimensions of shear rate is
.
2)Dimensions of shear stress are
Explanation:
Since the dimensions of velocity 'v' are
and the dimensions of distance 'y' are
, thus the dimensions of
become
and hence the units become
.
Now we know that the dimensions of coefficient of dynamic viscosity
are
thus the dimensions of shear stress can be obtained from the given formula as
![[\tau ]=[ML^{-1}T^{-1}]\times [T^{-1}]\\\\[\tau ]=[ML^{-1}T^{-2}]](https://tex.z-dn.net/?f=%5B%5Ctau%20%5D%3D%5BML%5E%7B-1%7DT%5E%7B-1%7D%5D%5Ctimes%20%5BT%5E%7B-1%7D%5D%5C%5C%5C%5C%5B%5Ctau%20%5D%3D%5BML%5E%7B-1%7DT%5E%7B-2%7D%5D)
Now we know that dimensions of momentum are ![[MLT^{-1}]](https://tex.z-dn.net/?f=%5BMLT%5E%7B-1%7D%5D)
The dimensions of
are ![[L^{2}T]](https://tex.z-dn.net/?f=%5BL%5E%7B2%7DT%5D)
Thus the dimensions of ![\frac{Moumentum}{Area\times time}=\frac{MLT^{-1}}{L^{2}T}=[MLT^{-2}]](https://tex.z-dn.net/?f=%5Cfrac%7BMoumentum%7D%7BArea%5Ctimes%20time%7D%3D%5Cfrac%7BMLT%5E%7B-1%7D%7D%7BL%5E%7B2%7DT%7D%3D%5BMLT%5E%7B-2%7D%5D)
Which is same as that of shear stress. Hence proved.