50 likes | 76 Views
Explore the future of CS education with personal robots bridging engineering and marketing skills, shaping the Institute for Personal Robots in Education into reality.
E N D
Chapter 3: Iteration Fibonacci 0 1 1 2 3 5 8 13 unsigned fib(unsigned n) { int first = 0, second = 1; while (n--) { unsigned tmp = first+second; first = second; second = tmp; } return first; } Personal Robots in Education
CS Education: The Future “The nature of these jobs is not closing the door and coding. “The great missing skill is somebody who’s good at understanding engineering and then bridges that to working with customers and marketing...” Personal Robots in Education
How? Personal Robots in Education
Announcing • The Institute for Personal Robots in Education Personal Robots in Education
Making it Real Personal Robots in Education