What is the output of the following snippet?
char ch = ‘A’;
ch = ch + 1;
class x
{
int y;
public:
x(int z){y=z;}
} x1[4];
int main()
{ x x2(10); return 0;}
How many objects are created for the above program