+1 vote
in JAVA by

Select the best from following options correctly explains the concept of Polymorphism?

i).

int func(float);  

float func(int, int, char);  

ii).

int func(int);  

int func(int);  

iii).

int func(int, int);  

float func1(float, float);  

iv) . None of the above

1 Answer

0 votes
by

iii).

int func(int, int);  

float func1(float, float);  

Related questions

0 votes
asked Jan 24, 2021 in JAVA by rajeshsharma
0 votes
asked Jan 24, 2021 in JAVA by rajeshsharma
...