Home ] Up ] Questionnaire Development ] [ CI3 ] MS Access ] SPSS ] SAS ] Word Perfect ] MapInfo ]

 

Programming into CI3 CATI for Network or Stand Alone;  

 

Before    The following was received from a client as a WordPerfect document.

 

I am going to read you a list of potential community problems affecting young people. On a scale of 1 to 7, with 1 being "Not at all serious" 
and 7 being "Very serious" please rate how serious you think each issue is in your community: (Rotate list)
3.	Violent crime
	1	2	3	4	5	6	7	DK
	Not at all						Very Serious
4.	Gangs
	1	2	3	4	5	6	7	DK
	Not at all						Very Serious
5.	Drug abuse
	1	2	3	4	5	6	7	DK
	Not at all						Very Serious
6.	Alcohol abuse
	1	2	3	4	5	6	7	DK
	Not at all						Very Serious
7.	Teen smoking
	1	2	3	4	5	6	7	DK
	Not at all						Very Serious
8.	Domestic violence
	1	2	3	4	5	6	7	DK
	Not at all						Very Serious
9.	Underage drinking
	1	2	3	4	5	6	7	DK
	Not at all						Very Serious
10.	Teenage pregnancy
	1	2	3	4	5	6	7	DK
	Not at all						Very Serious
11.	Race relations
	1	2	3	4	5	6	7	DK
                           Not at all						Very Serious

 

After:      The following CI3 code displays the list items in random order, one at a time, for each respondent; and allows the interviewer to enter the appropriate response.

LIST v311
  Violent crime
  Gangs
  Drug abuse
  Alcohol abuse
  Teen smoking
  Domestic violence
  Underage drinking
  Teenage pregnancy
  Race relations
ENDLIST
Q:v3-11
T:2
Now,I am going to read you a list of potential community problems. On a scale 
of 1 to 7, with 1 being "Not at all serious" and 7 being "Very serious" please 
rate how serious you think each issue is in your community: (List rotates)
T:10
	1. Not at all serious
	2.
	3.
	4.
	5.
	6.
	7. Very serious
	8. DK
I:
RANDOMIZE v311 v311rand
FOR v311rand
  SHOW LISTEXT 7 
  NUM 1 8
ENDFOR

What the interviewer sees.  

 

 

Before 

What are the ages of each child in your family
	a	Child 1 ______
	b	Child 2 ______
	c	Child 3 ______
	d	Child 4 ______
	e	Child 5 ______

 

After
LIST v16age5
  Child 1 
  Child 2 
  Child 3 
  Child 4 
  Child 5 
ENDLIST
Q:v16
T:2
16.  What are the ages of each child in your family?
     [INTERVIEWER: Don't accept more than FIVE, or ages over 20. ]
     [Enter 0 for Don't know/Refused/or Doesn't Apply.           ]
I:
SHOWLIST v16age5 10 20 14 1 
FOR v16age5  
  line = LISTNUM + 9
  NUM 0 20 2 0 line 17
ENDFOR

 

What the interviewer sees.  

 

Home ] Up ] Questionnaire Development ] [ CI3 ] MS Access ] SPSS ] SAS ] Word Perfect ] MapInfo ]