Can the method add() be overloaded in the following ways in C#?

public int add()  {    }
public float add(){    }

a) True
b) False

1 thought on “Can the method add() be overloaded in the following ways in C#?”

  1. b
    Explanation: C# provides the feature of method overloading which means methods with same name but different types and arguments.

Leave a Comment