Wednesday, 8 August 2012

How do we declare an ‘interface’ class? | C++

A. By making all the methods pure virtual in a class
B. By making all the methods abstract using the keyword ‘abstract’ in a class
C. By declaring the class as interface with the keyword ‘interface’
D. It is not possible to create interface class in C++

Ans: A

No comments: