An engineering drawing shows the: (A) dimensions, tolerances, cost, and sales or use volume of a component. (B) dimensions, tolerances, materials, and finishes of a component. (C) materials, finishes, machining operations, and dimensions of a component. (D) cost, materials, tolerances, and lead-time for a component. (E) cost, dimensions, and machining operations for a component.
Assign numMatches with the number of elements in userValues that equal matchValue. userValues has NUM_VALS elements. Ex: If userValues is {2, 1, 2, 2} and matchValue is 2, then numMatches should be 3. Your code will be tested with the following values: matchValue: 2, userValues: {2, 1, 2, 2} (as in the example program above) matchValue: 0, userValues: {0, 0, 0, 0} matchValue: 10, userValues: {20, 50, 70, 100} (Notes)