Built-in: Computational Thinking

Built-in Types

  1. Suppose that a and b are int values. What does the following sequence of statements do? Answer with a full sentence what the outcome is. “Create” an illustration of the process with either a series of drawings (the steps) or a video. Animations are welcome.
    Hint: think of what variables are.
    int t = a;
    a = b;
    b = t;