✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
static double F (int a, int b) {return a + b; } //Варіант 1
static double F (double a, double b) {return a + b; } //Варіант 2
static double F (short a, double b) {return a + b; } // Варіант 3
static double F (short a, int b) {return a + b; } // Варіант 4
static void Main()
{
short b = 5;
System.Console.Write(F (3, b));
}
Вкажіть істинне твердження, що відноситься до виклику функції F:
(**CharpBase**)