wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Robotics 1 Final Exam Review Part 1

Total questions: 135

Worksheet time: 12hrs 53mins

Name
Class
Date
1.

The term ____________ is defined as, "capable of easily igniting and rapidly burning."

a)

flammable

b)

trench

c)

electrical hazard

2.

A person who is capable of identifying existing and predictable hazards in the surroundings of working conditions which are unsanitary, hazardous, or dangerous to employees, and who has authorization to take prompt corrective measures to eliminate them.

a)

Competent person

b)

Qualified person

c)

OSHA inspector

3.

Ground fault protection is defined as _______________.

a)

A safety device that protects against short circuits by cutting off power.

b)

Personal protective equipment that prevents an employee from falling a large distance to the ground.

c)

A protective barrier placed around an opening in the floor to prevent falls from occurring.

4.

Which information of a hazardous substance is NOT required on a Material Safety Data Sheet.

a)

Exposure limits

b)

The date the material expires

c)

The physical and chemical characteristics

d)

Precautions for safe handling and use

5.

An experience modification rate (EMR) is a rate computation to determine surcharge or credit to worker's compensation premium based on a company's previous accident experience.

a)

True

b)

False

6.

An unplanned event or occurrence in which no one was injured and no damage to property occurred, but during which either could have happened is defined as a ___________.

a)

Near-miss

b)

Property damage

c)

Minor injury

7.

Failure to communicate is a key cause of accidents. Signs that communicate caution or tell you about potential hazards or warn against unsafe actions typically use the color ____________.

a)

Yellow

b)

Blue

c)

Green

d)

Red

8.

Procrastination, carelessness, and horseplay are examples of ________________________, and is a cause of accidents.

a)

Poor work habits

b)

Intentional acts

c)

Lack of skill

d)

Failure to communicate

9.

Which of the following are considered "unsafe acts" that cause accidents?

a)

Lifting improperly

b)

Failing to use personal protective equipment (PPE)

c)

Servicing equipment in motion

d)

All of the above

10.

The physical state that is different from the acceptable, normal, or correct condition found on the job site that usually causes an accident is called a/an __________________. (An example is a congested workplace or poor ventilation)

a)

Unsafe Condition

b)

Unsafe Act

c)

Management System Failure

d)

Intentional Act

11.

The Code of Federal Regulations (CFR) Part 1926 covers the OSHA standards for ____________________.

a)

Construction Industry

b)

General Industry

c)

Mining Industry

12.

Under federal law, employees have the right to report unsafe conditions in their work environments to OSHA without the fear of getting fired.

a)

True

b)

False

13.

An OSHA inspectors top priority for inspection types due to workers facing an immediate risk of death or serious physical harm is called ___________________.

a)

Imminent danger inspections

b)

Catastrophe inspections

c)

Monitoring inspections

14.

If an employer/company has been inspected previously and has been issued a citation, the type of inspection OSHA will perform is called a/an _________________.

a)

Follow-up inspection

b)

Programmed inspection

c)

Monitoring inspection

15.

An employer must keep and maintain records for all occupational fatalities, injuries, and illnesses, as well as, employee safety training plans.

a)

True

b)

False

16.

Construction has four leading causes of death, referred to as the four high-hazard areas constituting a total of 82% of all construction deaths. Most deaths occur from ______________ accidents.

a)

Fall

b)

Electrical

c)

Caught in

d)

Struck by

17.

It is important to recognize hazards on the job site. Two tools are often utilized, the Job Safety Analysis (JSA) and the Task Safety Analysis (TSA). The ___________________ is a pre-printed checklist that is created rather than having the employee determine and document each step that a single job entails followed by describing each safety concern for each step.

a)

Job Safety Analysis Form

b)

Task Safety Analysis Form

18.

Risk is a measure of the probability, consequences, and exposure related to an event.

a)

True

b)

False

19.

In the class videos, President Roosevelt was described as creating the first federal laws surrounding labor conditions. Check all that apply. (Hint: choose three)

a)

Occupational Safety and Health Act

b)

Minimum wage

c)

40 Hour work week

d)

Social security

e)

Material hazard communication standards

20.

The measure of risk that is determined by the chance an event will occur is called ______________________.

a)

Probability

b)

Consequences

c)

Exposure

21.

How does an ‘IF’ statement differ from a while loop?

a)

An IF statement is always run once; a WHILE loop is run as long as the condition in the parentheses is true.

b)

A WHILE loop is always run once; An IF Statement is run as long as the condition in the parentheses is true

c)

An IF statement can only be run while the condition is false; the WHILE loop can only be run as long as the condition is false

d)

An IF statement is always longer than a WHILE statement

22.

How is the robot able to determine it is veering off to one side or the other while attempting to move straight?

a)

The left and right encoders are not the same value

b)

A touch sensor on the side of the robot is pressed when the robot runs into a side wall

c)

A light sensor on the front of the robot senses that it is traveling over a black line

d)

It can’t – the programmer has to tell it that it is veering

23.

How can the robot self-correct its forward motion?

a)

Decrease the power to the wheel with the least encoder counts

b)

Increase the power to the wheel with the most encoder counts

c)

Assure that the power to both motors is the same

d)

Decrease the power to the wheels with the most encoder counts

24.

An IF-ELSE statement allows the robot to run two different portions of code at the same time.

a)

False

b)

Trues

25.

An IF-ELSE statement allows the robot to run one portion of code if the IF statement is false and another portion of code if it is true.

a)

True

b)

False

26.

How do you create a multi-line comment in your program?

a)

Type ‘/*’ at the beginning of your comment and ‘*/’ at the end of your comment

b)

Type ‘/*’ at the beginning of your comment

c)

Type ‘//’ at the beginning of your comment

d)

Type ‘//’ at the beginning of your comment and again at the end of your comment

27.

When using a variable, you must specify three things. They are:

a)

Variable Type, Name, and Value

b)

Sensor Type, Name, and Value

28.

Which of these is an Integer?

a)

-1

b)

2.5

c)

1.0

29.

Which of these is a proper variable name?

a)

LineCounter1

b)

Line Counter 1

c)

Line Counter

d)

1LineCounter

30.

Global variables should be created within task main and at the beginning.

a)

True

b)

False

31.

What does it mean to “initialize” a variable?

a)

It is given its initial value to store

b)

It is given a value which may not be changed

32.

Math operators (+, -, *, / ) can be used with assignment statements to perform calculations on the values before storing them.

a)

True

b)

False

33.

All decision making conditions in programming must be formed in a way that where the answer is either a yes/no or true/false statement.

a)

True

b)

False

34.

The following boolean operator compares two statements as "equal to." one another.

a)

==

b)

=

c)

<=

d)

!=

35.

The Sensor Debug Window:

a)

Provides real-time information on the values of all the sensors configured on the robot

b)

Only provides information of all the sensors configured on the robot at the end of the program

c)

Provides real-time information on all the motors and sensors configured on the robot

36.

When using the logical operator '&&' in a conditional statement, which of the following sample comparison would result in the entire statement being true and the program being run?

a)

(condition 1 true && condition 2 true)

b)

(condition 1 False && condition 2 True)

c)

(condition 1 True && condition 2 False)

d)

(condition 1 False && condition 2 False)

37.

When using the logical operator '| |' in a conditional statement, which of the following sample comparison would result in the entire statement being False and then the program would not run.

a)

(condition 1 true && condition 2 true)

b)

(condition 1 False && condition 2 True)

c)

(condition 1 True && condition 2 False)

d)

(condition 1 False && condition 2 False)

38.

Encoder wires must be plugged into:

a)

Any analog port

b)

Any adjacent analog port

c)

Any digital port

d)

Any adjacent digital port

39.

If your robot has wheels that are 5" in diameter, what is the linear distance 720 Encoder counts will travel?

a)

31.4 inches

b)

39.25 inches

c)

15.7 inches

d)

47.1 inches

40.

__________ is a measure of how fast an object is moving, describes a change in position with time, and is a scalar quantity.

a)

Speed

b)

Torque

c)

Velocity

d)

Acceleration

41.

________ is a change in speed over time, and is a vector quantity.

a)

Velocity

b)

Acceleration

c)

Angular Velocity

d)

Force

42.

______ is how fast an object is traveling at a particular instant of time, possibly a very small time interval.

a)

Instantaneous speed

b)

Average velocity

c)

Tangential velocity

d)

Linear velocity

43.

The distance a wheel will roll in one revolution is _________, and is equal to the circumference of the wheel.

a)

Wheel rollout

b)

Wheel slipping

c)

Angular velocity

44.

Which of the following is NOT necessary for estimating the robot's maximum speed.

a)

The formula for average velocity

b)

The maximum speed of the motor

c)

The radius of the wheel

d)

The formula for tangential velocity

45.

Which law of Motion states that the acceleration of an object is directly proportional to the net or total force acting on the object and inversely proportional to the object's mass?

a)

Newton's 1st Law of Motion

b)

Newton's 2nd Law of Motion

c)

Newton's 3rd Law of Motion

46.

_______ is the force due to the gravitational attraction that the Earth exerts on any object.

a)

Weight (Newtons)

b)

Mass (kilograms)

c)

Acceleration due to gravity (9.8 m/s2)

47.

The weight acts through the center of gravity of an object. This is an imaginary point where the weight of the object can be thought of as being concentrated.

a)

True

b)

False

48.

Choose all that is true when defining friction.

a)

The force that opposes an object's motion.

b)

Occurs between two objects along their common surface.

c)

Can either prevent both objects from moving

d)

An increase in friction that occurs across the contact area

49.

The force that prevents an object from moving in response to a push or a pull is defined as __________.

a)

Static friction

b)

Kinetic friction

c)

Traction

50.

_________ is the rotational analogue of force, is directed in a circle, and is described by the magnitude of the force multiplied by the distance it is from the center of rotation.

a)

Torque

b)

Angular Velocity

c)

Free spin

51.

Torque can either increase the angular velocity of a spinning object, or resist the tendency to rotate and decrease the angular velocity of a spinning object.

a)

True

b)

False

52.

_________ for a motor occurs when it is unloaded and there is no gear train present and is when their is (virtually) no load placed on the motor. (Choose two correct answers)

a)

Stall Torque (N-m)

b)

Free Spin (RPM)

c)

Maximum angular velocity

d)

Stall current (Amp)

53.

Current and Voltage are essential to converting electrical energy into mechanical energy by a motor.

a)

True

b)

False

54.

The product of current and voltage is _______.

a)

Electrical Power

b)

Work

c)

Rotational Power

55.

Rotational power refers to the strength of the motor or its ability to turn when loaded. It is the product of __________.

a)

Stall torque and angular velocity

b)

Friction and angular velocity

c)

Stall torque and stall current

d)

Stall torque and free current

56.

Theoretical maximum power is the power that is available from the battery and can be found as the product of the voltage in the battery and the maximum current rating of the battery.

a)

True

b)

False

57.

When using multiple motors on an application that requires more power than one motor can handle, the stall torques, stall currents, and free currents of each motor add together, but the free speed DOES NOT change.

a)

True

b)

False

58.

As the speed of the motor increases, the _____ decreases.

a)

Torque

b)

Velocity

c)

Acceleration

d)

Force

59.

If a motor is spinning at 25 RPM at 6 Volts, what would be the speed if the voltage was increased to 9 Volts?

a)

37.5 RPM

b)

16.6 RPM

c)

75 RPM

d)

50 RPM

60.

The robot travels 4 feet in 3.5 seconds. How much time will it take for the robot to travel 6 feet and 3 inches?

a)

5.47 seconds

b)

7.14 seconds

c)

5.51 seconds

d)

7.2 seconds

61.

A wheel turns 30 times in 24 seconds. Determine the angular velocity in RPM

a)

75 RPM

b)

0.02 RPM

c)

1.25 RPM

d)

12 RPM

62.

What is wheel rollout of a 150mm wheel in centimeters?

a)

47.1 cm

b)

471 cm

c)

235.5 cm

d)

23.6 cm

63.

Convert an angular velocity of 120 RPM in a 120 mm wheel to a linear velocity in cm/s. (use 3.14 for pi)

a)

75.36 cm/s

b)

753.6 cm/s

c)

4521.6 cm/s

d)

18.84 cm/s

64.

Your robot has a mass of 1.75 kg and has four wheels, how much normal force is acting on each wheel?

a)

4.29 N

b)

68.6 N

c)

.44 N

d)

7 N

65.

Your robot has a mass of 3 kg and it is pushing a ball that has a mass of 1.5 kg with an acceleration of 1.5 m/s2. How much force is applied?

a)

6.75 N

b)

3 N

c)

11.25 N

d)

2.25 N

66.

What is the coefficient of static friction if it takes a push of 12 N from the motors to get a 3.0 kg robot moving?

a)

.41

b)

3.67

c)

.27

67.

Two motors act together (each with a torque of 25 N.cm) to turn an 84 tooth gear that has an 88.9 mm diameter. What is the tangential force acting at the teeth of the gear?

a)

11.25N

b)

5.62 N

c)

1.12 N

d)

222.25 N

68.

As seen in the graphs, current and torque load are proportional. Which of the following statement is true.

a)

More torque load means more current draw.

b)

Current and rotational speed are inverse.

c)

The faster the motor spins, the less current it draws.

d)

All of the above

69.

In the example, a known motor at a known voltage is driving a known robot arm. In this scenario, what is the maximum weight the robot can hold stationary? (Hint: To solve this problem, a designer must understand that the maximum weight the robot can hold stationary occurs at the stall torque of the motor.)

a)

4 N

b)

.25 N

c)

40 N

d)

25 N

70.

In the example, and considering the torque load placed on the motor (s), how many VEX 393 motors would it take to hold the object stationary?

a)

4 motors

b)

2 motors

c)

3 motors

d)

1 motor

71.

What is the name of the field dealing with the study of the bodies in motion?

a)

Statics

b)

Classical Mechanics

c)

Physics

d)

Aeronautics

72.

Given P=I * V; a typical alkaline battery has a voltage of 1.5 volts and is capable of supplying .15 Amps of current. What is the power, in watts, that a battery is capable of producing?

a)

.225 watts

b)

.1 watts

c)

10 watts

d)

none of the above

73.

A bumper switch is a _______________ digital sensor.

a)

touch

b)

VEX LED

c)

Line Follower

d)

Potentiometer

74.

To make a VEX 393 Motor work please use a

a)

lock plate bearing

b)

analogue sensor

c)

motor controller

d)

large motor screw

75.

What needs to be at the start and end of all coding (under task main)?

a)

parathesis

b)

stop

c)

two back slashes

d)

curly brackets

76.

Which command means run time?

a)

start

b)

wait

c)

stop

d)

while

77.

Which part do we write code?

a)

1

b)

2

c)

3

d)

4

78.

To end a line of code what symbol is used?

a)

;

b)

:

c)

.

d)

<

79.

Comments in Robot C are what color?

a)

red

b)

green

c)

black

d)

blue

80.

What must you keep in mind while coding?

a)

spaces

b)

capitalization

c)

spelling

d)

Everything, spaces, capitalization, and spelling.

81.

Using the picture, which part is being shown?

a)

limit switch

b)

cortex

c)

battery pack

d)

motor

82.

A robot that operates solely on its sensors, motors, and code is considered to be...

a)

Humaniod

b)

Augmenting

c)

Teleoperated

d)

Autonomous

83.

What coding language is Robot C?

a)

C++

b)

Python

c)

Java

d)

RENE

84.

A line follower is a ____________ sensor.

a)

digital

b)

analog

c)

motor

d)

complicated

85.

A while statement will

a)

create a loop, repeating your code.

b)

allow your motor to run

c)

make your robot wait

d)

only work if 1==2

86.

What does untilTouch code for?

a)

switches

b)

levers

c)

gates

d)

motors

87.

What does a bumper switch do?

a)

It gives the motor a forward movement (increases speed).

b)

It is a button that can start a line of code.

c)

It is a bump your car can travel over.

88.

To reverse the direction of motor movement

a)

You can not reverse motor direction.

b)

Type a negative before speed.

c)

Move the motor arrangement on your robot.

d)

Use the switch on the Motor.

89.

To have your robot run while not connected to the computer you need to download and then

a)

turn off the cortex, undo the USB cord, and turn cortex on.

b)

you can't run a robot without the computer connected.

c)

take out the batteries, then put them back in.

d)

choose the wireless VEXNET option.

90.

What does compile program function do on RobotC?

a)

analyzes your code and fixes your mistakes.

b)

analyzes your code and shows mistakes.

c)

analyzes your code and inserts comments.

d)

analyzes your code and makes you mad.

91.

What symbol is this?

a)

START

b)

oval

c)

begin the flowchart

d)

circle

92.

What shape is this?

a)

START

b)

oval

c)

begin the flowchart

d)

circle

93.

What symbol is this?

a)

Read DataItem

b)

rectangle

c)

slanted box

d)

Input

e)

parallelogram

94.

What shape is this?

a)

Read DataItem

b)

rectangle

c)

slanted box

d)

Input

e)

parallelogram

95.

What symbol is this?

a)

Set Ans = calculation

b)

rectangle

c)

Processing

d)

calculation

96.

What shape is this?

a)

Set Ans = calculation

b)

rectangle

c)

Processing

d)

calculation

97.

What symbol is this?

a)

Question?

b)

Decision

c)

diamond

d)

YES

e)

NO

98.

What shape is this?

a)

Question?

b)

Decision

c)

diamond

d)

YES

e)

NO

99.

What symbol is this?

a)

Print Ans

b)

parallelogram

c)

slanted box

d)

Output

e)

rectangle

100.

What shape is this?

a)

Print Ans

b)

parallelogram

c)

slanted box

d)

Output

e)

rectangle

101.

What symbol is this?

a)

arrow

b)

downward arrow

c)

down

d)

direction

102.

What shape is this?

a)

arrow

b)

downward arrow

c)

down

d)

direction

103.

What symbol is this?

a)

Stop

b)

oval

c)

end of flowchart

d)

circle

104.

What shape is this?

a)

Stop

b)

oval

c)

end of flowchart

d)

circle

105.

This is an example of...

a)

Narrative

b)

Flowchart

c)

IPO Chart

d)

diagram

106.

A robot with 1 rotary joint and 2 linear joints will have a:

a)

cartesian work envelope

b)

cylindrical work envelope

c)

partial spherical work envelope

d)

full spherical work envelope

107.

A robot with 2 rotary joints and 1 linear joint will have a:

a)

cartesian work envelope

b)

cylindrical work envelope

c)

partial spherical work envelope

d)

full spherical work envelope

108.

A robot with 3 linear joints will have a:

a)

cartesian work envelope

b)

cylindrical work envelope

c)

partial spherical work envelope

d)

full spherical work envelope

109.

A robot with 3 rotary joints will have a:

a)

cartesian work envelope

b)

cylindrical work envelope

c)

partial spherical work envelope

d)

full spherical work envelope

110.

Roll, pitch, or yaw?

a)

roll

b)

pitch

c)

yaw

111.

Roll, pitch, or yaw? (the plane in the image is seen from above, and is turning left and right)

a)

roll

b)

pitch

c)

yaw

112.

Roll, pitch, or yaw? (the plane in the image is seen from above, and is turning left and right)

a)

roll

b)

pitch

c)

yaw

113.

Roll, pitch and yaw movement of a robot actuator will require 3 . . .

a)

linear joints

b)

rotary joints

114.

Movement in cartesian space of a robot actuator will require 3 . . .

a)

linear joints

b)

rotary joints

115.

Pick the true statement:

a)

A robot can have 6 degrees of freedom: translational movement in the x, y, and z axes, plus roll, pitch and yaw.

b)

The number of degrees of freedom for each joint of a robot contributes to the overall number of degrees of freedom for the robot.

116.

Mechanisms are used to . . .

a)

change the direction of movement.

b)

change the speed or torque of movement.

c)

change the type of movement.

d)

all of these

117.

Will these gear rotate in the same or opposite directions?

a)

Same direction

b)

Opposite directions

118.

Will the first and last gears in this gear train rotate in the same direction?

a)

Yes

b)

No

119.

Which gear is the INPUT?

a)

Left gear

b)

Right gear

120.

The gear ratio is the relationship between . . .

a)

an input gear and output gear.

b)

speed and torque.

c)

the number of teeth and the diameter of a gear.

d)

none of these

121.

Which gear is the INPUT?

a)

Left gear

b)

Right gear

122.

Which gear is the OUTPUT?

a)

Left gear

b)

Right gear

123.

Which gear is the OUTPUT?

a)

Left gear

b)

Right gear

124.

In this gear train, the output speed _____.

a)

increases.

b)

decreases.

c)

remains constant.

125.

In this gear train, the output speed _____.

a)

increases.

b)

decreases.

c)

remains constant.

126.

In this gear train, the output speed _____.

a)

increases.

b)

decreases.

c)

remains constant.

127.

In this gear train, the output torque _____.

a)

increases.

b)

decreases.

c)

remains constant.

128.

In this gear train, the output torque _____.

a)

increases.

b)

decreases.

c)

remains constant.

129.

In this gear train, the output torque _____.

a)

increases.

b)

decreases.

c)

remains constant.

130.

Speed and torqure are _____ related.

a)

directly

b)

inversely

131.

What is the gear ratio of this gear train?

Left gear = 36 teeth

Right gear = 12 teeth

a)

36 : 12

b)

12 : 36

132.

What is the gear ratio of this gear train?

Left gear = 60 teeth

Right gear = 36 teeth

a)

60 : 36

b)

36 : 60

133.

What is the gear ratio if the input gear has 48 teeth and the output gear has 12 teeth?

a)

48 : 12

b)

12 : 48

134.

What is the gear ratio if the input gear has 10 teeth and the output gear has 50 teeth?

a)

10 : 50

b)

50 : 10

135.

Do extra gears between an input and output gear change the gear ratio?

a)

Yes

b)

No