Control flow Operators Flashcards

You may prefer our related Brainscape-certified flashcards:
0
Q

Else

A
If # Test = False
# Do
else
# Do
End
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
1
Q

If

A
If # Test = True
 # Do

End

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

Elsif

A

Another Test = True

End

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

Unless

A
Unless # Test = True
   # Do
End
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is missing?

if (x >= 10)
print “Learning Ruby”

A

if x >= 10
print “Learning Ruby”
end

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

What do you need to delete?

if ( x >= 10)
print “Learning Ruby”

A

Brackets

if x >= 10
print “Learning Ruby”
end

Don’t forget the end

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