An object is a contiguous region of storage - "something in memory"
An lvalue is an expression that refers to an object
var = 7; tab1[3] = 8; *(tab2 + 4) = 9; tab3[0].x = 2.0;