2
Answers

How can we achieve polymorphism in below code snippet ?

Photo of Vivek Sheth

Vivek Sheth

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

Answers (2)