What is a protocol class?
Answer / harendra pal
An abstract class is a protocol class if:
it neither contains nor inherits from classes that contain member data, non-virtual functions, or private (or protected) members of any kind.
it has a non-inline virtual destructor defined with an empty implementation,
all member functions other than the destructor including inherited functions, are declared pure virtual functions and left undefined.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the last index number in an array of 100 characters a) 100 b) 99 c) 101
How can you find the nodes with repetetive data in a linked list?
Why are arrays usually processed with for loop?
What do you mean by translation unit?
What are c++ data types?
What is the difference between a baller and a reference in C++?
What are c++ templates used for?
What is the difference between the parameter to a template and the parameter to a function?
What does asterisk mean in c++?
Explain virtual functions in C++.
What is meaning of in c++?
sizeof- is it functioning statically or dynamically?