Utviklings psykologi Flashcards

1
Q

Whats a between-subject design?

A

Research design where the sample is shared across two groups and tested on two different tasks.
Measuring the different performance between the groups.

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

Whats a within -subject design?

A

Research design where each of the participants are tested across different tests.
The performance difference in-between the tests is the subject of study.

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

Whats the difference between global change and local change. And how can domains be determined to one of them?

A

Global change is change where many domains are in development simultaneously, often caused by relatedness between the domains. While under local change the domains are developed unrelated.
This can be determined by more frequent measuring of the two different domains.

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

What is the difference between stage-like and continuous change?

A

Can be associated with qualitive and quantitve change in the development. E.g puberty gives stage-like changes

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

st1 = input(“1st letter:”)
st2 = input(“2nd letter:”)
st3 = input(“3rd letter:”)

if st1 > st2 > st3:
print(f”The letter in the middle is {st2}”)
elif st2 > st3 > st1:
print(f”The letter in the middle is {st3}”)
elif st3 > st1 > st2:
print(f”The letter in the middle is {st1}”)
elif st1 > st3 > st2:
print(f”The letter in the middle is {st3}”)
elif st3 > st2 > st1:
print(f”The letter in the middle is {st2}”)
elif st2 > st1 > st3:
print(f”The letter in the middle is {st1}”)
elif st1 > st3 > st2:
print(f”The letter in the middle is {st3}”)

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