To create an occurance of. Used in
object oriented programming to describe the creation of an
object in code. example in c++:
class bird {
private:
int wings, feet, beak;
public:
void fly();
};
void main() {
bird chicken; //here's the instantiation of a bird object
}