Variable Types Flashcards

1
Q

what are the five types of variables?

A

Constants, global variables, class variables, instance variables, and local variables

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

how is a constant variable declared?

When is it used?

A

by capitalizing every letter in the variable’s name
MY_CONSTANT = ‘I am available throughout your app.’

used for storing data that never needs to change.

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

Can Constants be declared in method definitions?

A

no

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

how are Global variables defined?

A

declared by starting the variable name with the dollar sign ($).

$var = ‘I am also available throughout your app.’

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

why are defining Global variables dangerous?

A

These variables are available throughout your entire app, overriding all scope boundaries.

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

How are Class variables declared?

A

starting the variable name with two @ signs

@@instances = 0

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

How are Class variables accessed?

A

accessible by instances of your class, as well as the class itself.

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

List an example of when you should use a class variable

A

When you need to declare a variable that is related to a class, but each instance of that class does not need its own value for this variable

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

how is a class variable initialized?

A

initialized at the class level, outside of any method definitions.

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

how can class variables be altered?

A

altered using class or instance method definitions.

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

how are Instance variables declared?

A

starting the variable name with one @ sign.

@var = ‘I am available throughout the current instance of this class.’

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