COMPLETE PRACTICE QUESTIONS AND
RATIONALES BUNDLE
This comprehensive FE Mechanical Exam Complete
Study Guide bundle features highly realistic
multiple-choice questions meticulously aligned with
the latest NCEES CBT specifications. Every practice
problem delivers immediate, high-yield learning with
an instantly accessible answer key and step-by-step
mathematical rationales to maximize your study
efficiency. Perfect for engineering students and
professionals seeking a results-driven framework to
pass the Fundamentals of Engineering exam on their
very first attempt.
1. Mathematics: Analytic Geometry
What is the center and radius of the circle defined by the equation x² +
y² - 6x + 8y + 9 = 0?
A) Center: (3, -4); Radius: 4
B) Center: (-3, 4); Radius: 4
,C) Center: (3, -4); Radius: 16
D) Center: (-3, 4); Radius: 16
Answer: A
Rationale: Group the x and y terms and complete the square: (x² - 6x +
9) + (y² + 8y + 16) = -9 + 9 + 16. This simplifies to (x - 3)² + (y + 4)² = 16.
Comparing this to the standard circle equation (x - h)² + (y - k)² = r²,
the center (h, k) is (3, -4) and the radius r is \(\sqrt{16} = 4\).
2. Mathematics: Calculus
Evaluate the limit: \(\lim_{x \to 0} \frac{\sin(5x)}{3x}\).
A) 0
B) 1
C) 5/3
D) ∞
Answer: C
Rationale: Direct substitution yields the indeterminate form 0/0.
Applying L'Hôpital's Rule, take the derivative of the numerator and
denominator with respect to x. The derivative of \(\sin(5x)\) is
\(5\cos(5x)\) and the derivative of 3x is 3. Evaluating the new limit
gives \(\lim_{x \to 0} \frac{5\cos(5x)}{3} = \frac{5(1)}{3} =
\frac{5}{3}\).
3. Mathematics: Vector Analysis
Find the dot product of vectors \(\mathbf{A} = 2\mathbf{i} - 3\mathbf{j}
+ 4\mathbf{k}\) and \(\mathbf{B} = \mathbf{i} + 2\mathbf{j} -
,\mathbf{k}\).
A) -8
B) -4
C) 4
D) 8
Answer: B
Rationale: The dot product is calculated as \(A_x B_x + A_y B_y + A_z
B_z\). Substituting the given vector components: (2)(1) + (-3)(2) + (4)(-
1) = 2 - 6 - 4 = -4.
4. Probability and Statistics: Combinatorics
A quality control engineer must select 3 parts at random from a batch
of 10 parts for inspection. How many unique combinations of parts can
be selected?
A) 30
B) 120
C) 240
D) 720
Answer: B
Rationale: Because the order of selection does not matter, use the
combination formula \(nCr = \frac{n!}{r!(n-r)!}\). For this problem,
\(_{10}C_3 = \frac{10!}{3! \cdot 7!} = \frac{10 \times 9 \times 8}{3
\times 2 \times 1} = 120\).
5. Probability and Statistics: Probability Distributions
, If the probability of a component failing during a stress test is 0.2, what
is the probability that exactly 2 out of 5 independently tested
components will fail?
A) 0.040
B) 0.205
C) 0.328
D) 0.400
Answer: B
Rationale: This follows a binomial distribution where n=5, k=2, and
p=0.2. The formula is \(P(X=k) = \binom{n}{k} p^k (1-p)^{n-k}\).
Calculating this gives \(\binom{5}{2} (0.2)^2 (0.8)^3 = 10 \times 0.04
\times 0.512 = 0.2048\), which rounds to 0.205.
6. Computational Tools: Spreadsheets
In a spreadsheet, cell A1 contains the value 10 and cell B1 contains the
formula =IF(A1>5, A1*2, A1/2). If the value in A1 is changed to 4, what
is the new value displayed in B1?
A) 2
B) 4
C) 8
D) 20
Answer: A
Rationale: The IF statement evaluates the condition (A1>5). When A1
becomes 4, the condition 4>5 is false. The spreadsheet then executes
the "false" path, which is A1/2. Therefore, = 2.