Blocks and variable basics Flashcards

1
Q

What is the purpose of a Variable?

A

to label and store data in memory.

This data can then be used throughout your program.

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

What is the value of b at this point?
Why?

irb :001 > a = 4
=> 4
irb :002 > b = a
=> 4
irb :003 > a = 7
=> 7
A

b remains 4, while a was re-assigned to 7.

Variables point to values in memory, and are not deeply linked to each other.

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

what does gets method stand for?

A

gets stands for “get string”

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

what does variable’s scope determine?

A

where in a program a variable is available for use

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

how is a variable’s scope defined?

A

defined by where the variable is initialized or created.

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

In Ruby, variable scope is defined by a ___ ?

A

block.

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

In Ruby, what is a block?

A

A block is a piece of code following a method invocation, usually delimited by either curly braces {} or do/end.

Be aware that not all do/end pairs imply a block*. The for…do/end is not a block, it is part of the Ruby language and not a method invocation.

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

______ scope can access variables initialized in an _____ scope , but not vice versa.

A

Inner

outer

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

When are blocks created?

A

A new block is created when we use each, times and other method invocations, followed by {} or do/end. And when using iterators such as loop and each.

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

List examples of ruby blocks

A

.times…do/end, .each…do/end, loop…do/end

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

List examples of things that are NOT ruby blocks

A

while, until, for…do/end, if…end, unless..end

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

How do I identify a block?

A

If the {} or do/end immediately follows a method invocation (E.g. [object].[method]), it is considered a block (and thereby creates a new scope for variables). And an iterator such as loop, is a block. But while, until, and for…do/end code is part of the Ruby language and not a method invocation. Thus they are not blocks.

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

How do blocks affect variable scope?

A

Variables created inside blocks are not accessible outside the block, because a new inner scope is created inside the block. But variables created inside code that is not a block, is accessable in outer scope, because a new inner scope was not created.

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

Do blocks affect variables created in outer scope?

A

No. Variables created in outer scope, outside blocks or non blocks is ALWAYS accessable inside blocks and non blocks.

Inner scope can access variables initialized in an outer scope, but not vice versa.
So the outer scope cannot access variables initialized in an inner scope.

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