Computer Science, asked by vineth8451, 11 months ago

A set of objects that share a common structure and a common behavior is called :

Answers

Answered by Riteesh70
10

object class..........

Answered by StaceeLichtenstein
0

Class is the correct answer to the given question .

Explanation:

  • Class is the collection of variable and the function .Class holds the variable and function / methods .if we access the properties i.e variable and function of class we have to created the object of that class .We can created the many objects of a single class these set of object sharing the same behavior of the class .
  • To create any class we used the' class' keyword.Following are the syntax of a class .

         class class-name

        {

       // variable and function

        }  

  • To create the object of class we used following syntax

          class-name  object 1,object2......;

Learn More:

  • brainly.in/question/8351746
Similar questions