Routing for UAS38

total := 0
avgSNSscore := 0
S001 (good with fractions)
How good are you at working with fractions?
1 Not at all good
1
2
2
3
3
4
4
5
5
6 Extremely good
6
if S001 > 0 then
total := total + S001
End of if
S002 (good with percentages)
How good are you at working with percentages?
1 Not at all good
1
2
2
3
3
4
4
5
5
6 Extremely good
6
if S002 > 0 then
total := total + S002
End of if
S003 (good at tip)
How good are you at calculating a 15% tip?
1 Not at all good
1
2
2
3
3
4
4
5
5
6 Extremely good
6
if S003 > 0 then
total := total + S003
End of if
S004 (shirt 25% off)
How good are you at figuring out how much a shirt will cost if it's 25% off?
1 Not at all good
1
2
2
3
3
4
4
5
5
6 Extremely good
6
if S004 > 0 then
total := total + S004
End of if
S005 (tables and graphs helpful)
When reading the newspaper, how helpful do you find tables and graphs that are parts of a story?
1 Not at all helpful
1
2
2
3
3
4
4
5
5
6 Extremely helpful
6
if S005 > 0 then
total := total + S005
End of if
S006 (chance in words vs numbers)
When people tell you the chance of something happening, do you prefer that they use words ("it rarely happens") or numbers ("there's a 1% chance")?
1 Always prefer words
1
2
2
3
3
4
4
5
5
6 Always prefer numbers
6
if S006 > 0 then
total := total + S006
End of if
S007 (weather forecast)
When you hear a weather forecast, do you prefer predictions using percentages (e.g., "there will be a 20% chance of rain today") or predictions using only words (e.g., "there is a small chance of rain today")?
1
Always prefer words
1
2

2
3

3
4

4
5

5
6 Always prefer percentages
6
if S007 > 0 then
total := total + S007
End of if
S008 (numerical info useful)
How often do you find numerical information to be useful?
1 Never
1
2
2
3
3
4
4
5
5
6 Very often
6
if S008 > 0 then
total := total + S008
End of if
avgSNSscore := total / 8
Group of questions presented on the same screen
PART1 (Part 1 intro question)
Part 1: How well does this statement describe you or your situation? (on a mobile device please swipe right on the questions to see all answer options)
Subgroup of questions
C001 (handle unexpected expense)
I could handle a major unexpected expense
1 Completely
2 Very well
3 Somewhat
4 Very little
5 Not at all
C002 (securing financial future)
I am securing my financial future
1 Completely
2 Very well
3 Somewhat
4 Very little
5 Not at all
C003 (never have things I want)
Because of my money situation, I feel like
I will never have the things I want in life
1 Completely
2 Very well
3 Somewhat
4 Very little
5 Not at all
C004 (enjoy life managing money)
I can enjoy life because of the way I'm managing money
1 Completely
2 Very well
3 Somewhat
4 Very little
5 Not at all
C005 (just getting by financially)
I am just getting by financially
1 Completely
2 Very well
3 Somewhat
4 Very little
5 Not at all
C006 (concerned money won't last)
I am concerned that the money I have or will save won't last
1 Completely
2 Very well
3 Somewhat
4 Very little
5 Not at all
End of subgroup of questions
End of group of questions
Group of questions presented on the same screen
PART2 (Part 2 intro question)
Part 2: How often does this statement apply to you? (on a mobile device please swipe right on the questions to see all answer options)
Subgroup of questions
C007 (gift causes strain)
Giving a gift for a wedding, birthday, or other occasion
would put a strain on my finances for the month
1 Always
2 Often
3 Sometimes
4 Rarely
5 Never
C008 (money left over)
I have money left over at the end of the month
1 Always
2 Often
3 Sometimes
4 Rarely
5 Never
C009 (behind with finances)
I am behind with my finances
1 Always
2 Often
3 Sometimes
4 Rarely
5 Never
C010 (finances control life)
My finances control my life
1 Always
2 Often
3 Sometimes
4 Rarely
5 Never
End of subgroup of questions
End of group of questions
Group of questions presented on the same screen
PART3 (Part 3 intro)
Part 3: Tell us about yourself.
Subgroup of questions
C011 (age)
How old are you?
1 18-61
2 62+
C012 (how survey taken)
How did you take the questionnaire?
1 I read the questions myself
2 Someone read the questions to me
End of subgroup of questions
End of group of questions
C013 (confident make financial decisions)
How confident do you feel in your ability to make financial decisions?
0 Not at all confident
0
1
1
2
2
3
3
4
4
5
5
6
6
7
7
8
8
9
9
10 Very confident.
10
Part1sub := 0
Part2sub := 0
TotalRespValue := 0
Loop from 1 to 6
Part1score[cnt] := 0
if cnt = 1 then
if C001 = 1 then
Part1score[cnt] := 4
elseif C001 = 2 then
Part1score[cnt] := 3
elseif C001 = 3 then
Part1score[cnt] := 2
elseif C001 = 4 then
Part1score[cnt] := 1
elseif C001 = 5 then
Part1score[cnt] := 0
End of if
elseif cnt = 2 then
if C002 = 1 then
Part1score[cnt] := 4
elseif C002 = 2 then
Part1score[cnt] := 3
elseif C002 = 3 then
Part1score[cnt] := 2
elseif C002 = 4 then
Part1score[cnt] := 1
elseif C002 = 5 then
Part1score[cnt] := 0
End of if
elseif cnt = 3 then
if C003 = 1 then
Part1score[cnt] := 0
elseif C003 = 2 then
Part1score[cnt] := 1
elseif C003 = 3 then
Part1score[cnt] := 2
elseif C003 = 4 then
Part1score[cnt] := 3
elseif C003 = 5 then
Part1score[cnt] := 4
End of if
elseif cnt = 4 then
if C004 = 1 then
Part1score[cnt] := 4
elseif C004 = 2 then
Part1score[cnt] := 3
elseif C004 = 3 then
Part1score[cnt] := 2
elseif C004 = 4 then
Part1score[cnt] := 1
elseif C004 = 5 then
Part1score[cnt] := 0
End of if
elseif cnt = 5 then
if C005 = 1 then
Part1score[cnt] := 0
elseif C005 = 2 then
Part1score[cnt] := 1
elseif C005 = 3 then
Part1score[cnt] := 2
elseif C005 = 4 then
Part1score[cnt] := 3
elseif C005 = 5 then
Part1score[cnt] := 4
End of if
elseif cnt = 6 then
if C006 = 1 then
Part1score[cnt] := 0
elseif C006 = 2 then
Part1score[cnt] := 1
elseif C006 = 3 then
Part1score[cnt] := 2
elseif C006 = 4 then
Part1score[cnt] := 3
elseif C006 = 5 then
Part1score[cnt] := 4
End of if
End of if
Part1sub := Part1sub + Part1score[cnt]
End of loop
Loop from 1 to 4
Part2score[cnt] := 0
if cnt = 1 then
if C007 = 1 then
Part2score[cnt] := 0
elseif C007 = 2 then
Part2score[cnt] := 1
elseif C007 = 3 then
Part2score[cnt] := 2
elseif C007 = 4 then
Part2score[cnt] := 3
elseif C007 = 5 then
Part2score[cnt] := 4
End of if
elseif cnt = 2 then
if C008 = 1 then
Part2score[cnt] := 4
elseif C008 = 2 then
Part2score[cnt] := 3
elseif C008 = 3 then
Part2score[cnt] := 2
elseif C008 = 4 then
Part2score[cnt] := 1
elseif C008 = 5 then
Part2score[cnt] := 0
End of if
elseif cnt = 3 then
if C009 = 1 then
Part2score[cnt] := 0
elseif C009 = 2 then
Part2score[cnt] := 1
elseif C009 = 3 then
Part2score[cnt] := 2
elseif C009 = 4 then
Part2score[cnt] := 3
elseif C009 = 5 then
Part2score[cnt] := 4
End of if
elseif cnt = 4 then
if C010 = 1 then
Part2score[cnt] := 0
elseif C010 = 2 then
Part2score[cnt] := 1
elseif C010 = 3 then
Part2score[cnt] := 2
elseif C010 = 4 then
Part2score[cnt] := 3
elseif C010 = 5 then
Part2score[cnt] := 4
End of if
End of if
Part2sub := Part2sub + Part2score[cnt]
End of loop
TotalRespValue := Part1sub + Part2sub
WellBeingScore := lookUpScore(TotalRespValue,C012,C011)
CS_001 (HOW PLEASANT INTERVIEW)
Could you tell us how interesting or uninteresting you found the questions in this interview?
1 Very interesting
2 Interesting
3 Neither interesting nor uninteresting
4 Uninteresting
5 Very uninteresting
CS_003 (comments)
Do you have any other comments on the interview? Please type these in the box below.(If you have no comments, please click next to complete this survey.)
STRING