PLC Flashcards

(12 cards)

1
Q

How is ladder logic executed by the PLC?

A

Left → Right, Top → Bottom, repeatedly (scan cycle).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How should humans read ladder logic to understand it?

A

Start from the output (right side) and read right → left.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does a ladder rung represent logically?

A

One boolean expression (one IF statement).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What does a Normally Open (NO) contact mean in ladder logic?

A

The condition is TRUE when the variable is TRUE.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What does a Normally Closed (NC) contact mean in ladder logic?

A

The condition is TRUE when the variable is FALSE.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How do you translate an NC contact to pseudo-code?

A

As a NOT condition ( !variable ).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How do you translate a NO contact to pseudo-code?

A

As the variable itself ( variable ).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What does a coil ( ) represent?

A

An assignment to a variable (output or flag).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What does a parallel branch mean logically?

A

OR (||).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What does a series connection mean logically?

A

AND (&&).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is an M (marker) variable?

A

An internal boolean memory flag (no physical hardware).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

One sentence that summarizes ladder logic

A

Ladder logic evaluates conditions — it does not react to triggers.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly