I saw one question probably. Manipulation of vectors. And that was about the hardest (and only) thing on vectors that I saw.
So you'll be given 2 vectors or so, with their XY coordinates and you have to compute some manipulations... like 2A - 3B where A and B are vectors.
Those probably are quite straightforward, any vector with a coefficient in front of it you just multiply the X and Y values by that coefficient, do that for both vectors and then subtract the X coordinates from each other and the same for the Y's to get your final vector.
More concrete example: vector A(3,-2) and B(4,6)
2A - 2B = ?
so 2(3, -2) - 2(4,6) = (6,-4) - (8,12)
= (6-8, -4-12) = (-2, -16)