High School Student 1st Survey Questions

Your teachers spent part of their summer going to school. They were learning more about making computer games. They were working with us, a team of professors and graduate students from the University of Denver. Some of the team members will come out to your school to work with you and to see how you are doing learning more about computer games.

You are the very first school in Colorado to try learning about making computer games in this way. In order to learn more about how this project is working at your school, it will help us to learn more about you. We care very much about your learning and your answers to these survey questions. Please do the best job you can of answering the questions and we look forward to meeting you and working with you this year at MLK. If you do not know the answer to a question, it is ok to put I don't know.


int num1 = 5;
int num2 = 8;
num1 = num 2;


int num1 = 5;
int num2 = 8;
num1 = num 2 * num1;


for (int i = 0 ; i <= 10 ; i++)
{
 system.out.println(“hi”);
}


ArrayList theList = new ArrayList();


theList.add( 5 );
theList.add( 10 );
theList.add( 8 );
theList.add( 3 );


if ( (Integer) theList.get( 0 ) > 4 )
{
 theList.set( 0, 100 );
}
else
{
 theList.set( 0, 3 );
}


theList.remove( 2 ) ;


theList.add( 50 );


public void act()
{
 if ( getX() >= getWorld().getWidth() )
 {
 if ( getY() < getWorld().getHeight() )
 {
 setLocation( getX(), getY() + 1 );
 }
 }
 else if ( getY() >= getWorld().getHeight() )
 {
 setLocation( getX() + 1, getY() );
 }
 else
 {
 setLocation( getX() + 1, getY() + 1 );
 }
}

This survey was approved by the University of Denver's Institutional
Review Board for the Protection of Human Subjects in Research on June
12, 2007.