Answer:
FCW in car stands for <em>Forward Collision Warning.
</em>
<u>Explanation:</u>
The vehicle speed is monitored by <em>FCW system</em>, this is an advanced technology which indicates to the rear vehicle that a crash is going to happen if the vehicle gets close <em>because of speed</em>. This FCW systems monitor’s distance between the vehicles and speed of the vehicles.
<em>FCW system do not control the vehicle completely</em>. This system consists of sensors to detect stationary or slower-moving vehicles. A signal alerts the driver if the <em>distance between the vehicles is less</em> so that crash is being happened. It helps driver from crash by changing his route. Cars with this technology consists of audible alert.
The question is incomplete. The complete question is :
The solid rod shown is fixed to a wall, and a torque T = 85N?m is applied to the end of the rod. The diameter of the rod is 46mm .
When the rod is circular, radial lines remain straight and sections perpendicular to the axis do not warp. In this case, the strains vary linearly along radial lines. Within the proportional limit, the stress also varies linearly along radial lines. If point A is located 12 mm from the center of the rod, what is the magnitude of the shear stress at that point?
Solution :
Given data :
Diameter of the rod : 46 mm
Torque, T = 85 Nm
The polar moment of inertia of the shaft is given by :
J = 207.6
So the shear stress at point A is :
Therefore, the magnitude of the shear stress at point A is 4913.29 MPa.
Answer:
b) False
Explanation:
Viscosity:
Viscosity is a fluid property and comes in the picture when fluid in the motion.In Simple words viscosity is the frictional force offered by fluid between the fluid layer.Viscosity provides a resistant to flow of fluid.
Generally viscosity are of two types
1.Dynamics viscosity
2.Kinematics viscosity
Generally in liquids when temperature of fluid is increases then molecular force between fluid particle goes to decreases.Due to this viscosity of liquids will decrease.
So our option b is right.
Answer:
Explanation:
% Clears variables and screen
clear; clc
% Asks user for input
n = input('Total number of objects: ');
r = input('Size of subgroup: ');
% Computes and displays permutation according to basic formulas
p = 1;
for i = n - r + 1 : n
p = p*i;
end
str1 = [num2str(p) ' permutations'];
disp(str1)
% Computes and displays combinations according to basic formulas
str2 = [num2str(p/factorial(r)) ' combinations'];
disp(str2)
=================================================================================
Example: check
How many permutations and combinations can be made of the 15 alphabets, taking four at a time?
The answer is:
32760 permutations
1365 combinations
==================================================================================