Answer:Topographic map. Contour line. Learning Objectives. After completing this chapter, you will be able to: □ Define civil engineering and civil drafting.
Explanation:
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
==================================================================================
Answer:
the elevation at point X is 2152.72 ft
Explanation:
given data
elev = 2156.77 ft
BS = 2.67 ft
FS = 6.72 ft
solution
first we get here height of instrument that is
H.I = elev + BS ..............1
put here value
H.I = 2156.77 ft + 2.67 ft
H.I = 2159.44 ft
and
Elevation at point (x) will be
point (x) = H.I - FS .............2
point (x) = 2159.44 ft - 6.72 ft
point (x) = 2152.72 ft