1)

Does the output remain same or different for both cases?

1)
char l ='k';
float x = 19.0f;
int y;
y = (l / Convert.ToInt32(x));
Console.WriteLine(y);


2)
char l ='k';
float x = 19.0f;
int y;
y = Convert.ToInt32(l / x);
console.WriteLine(y);


A) Yes

B) No

Answer:

Option B

Explanation:

Output:

1) 5.
2) 6.