Company: IndusInd bank on-campus_19may
Difficulty: medium
Mike has written the following code snippet in C#. In which of the following "Blanks" can he add the keyword partial to produce the output as follows? Code using System; public <Blank1> class C { private int x; private int y; public <Blank2> C(int x, int y) { this.x = x; this.y = y; } } public <Blank3> class C { public <Blank4> void Print() { Console.WriteLine("C: {0},{1}", x, y); } } Options Blank1 and Blank2 Blank1 and Blank4 Blank1 and Blank3 Blank3 and Blank4 Input Format There is no input for this question. Output Format Print the text of the correct option exactly as it appears in the option list.