ICSE Computer Applications 2024 Boards Paper Solved Section B - Question 4.
// IG @vanvaryClasses.in
class Overload
{
void perform(double r, double h)
{
double l=Math.sqrt(r*r+h*h);
double CSA = Math.PI*r*l;
System.out.println("CSA="+CSA);
}
void perform(int r, int c)
{
fo...
ayushvanvary.tech1 min read