Trigyn Technologies Interview Question

how to create an object of abstract class

Interview Answers

Anonymous

Dec 13, 2019

we can't create object of abstract class

1

Anonymous

Oct 19, 2022

Abstract class: is a restricted class that cannot be used to create objects (to access it, it must be inherited from another class). Abstract method: can only be used in an abstract class, and it does not have a body. The body is provided by the derived class (inherited from).