What is meant by Class?

devquora
devquora

Posted On: Jul 17, 2021

 

    1 Answer Written

  •  devquora
    Answered by sarvesh bhalkikar

    In object-oriented programming, a class is a blueprint for creating objects (a particular data structure), providing initial values for state (member variables or attributes), and implementations of behavior (member functions or methods).

Related Questions

Please Login or Register to leave a response.

Related Questions

Data Structure Interview Questions

What is meant by Object Oriented Programming – OOP?

Object-oriented programming (OOP) is a computer programming technique that organizes software design around data, or objects, rather than functions and logic. An object can be defined as a data field ...

Data Structure Interview Questions

What is meant by Structural Programming?

Structured Programming can be defined as a programming Approach in which the program is made as a single structure. Lines or blocks of codes are written and executed in a sequential manner such as one...

Data Structure Interview Questions

What is meant by Object?

An Object is a part of object-oriented programming, which is basically a single instance of a class that has similar characteristics. An object can be a combination of variables, functions, and data s...