2
Answers

How can we achieve polymorphism in below code snippet ?

Vivek Sheth

Vivek Sheth

8y
310
1
How can we achieve Runtime polymorphism in below code snippet ?
 
class A
{
 
}
 
Class B : A
{
 
 
Here both classes are empty. 
Answers (2)