Computer Science, asked by saksham7605, 4 days ago

Objects in Object Oriented Language represents concept with a program

Answers

Answered by newcontactnb
0

Answer:

objects are variables of type class

Explanation:

eg: class dog then object will be pug or goldenretriever.

program:

class dog {

int size;

float height;

dog(size height){ this.size=size;

this.height= height;}

int main()

{

dog pug (23,56.8);

}

Similar questions