304.
Consider the following code snippet:
Y= ++X;
If the initial value of X is 5, what will be the value of X and Y after the execution?
View Description
Because Pre-Increment Operator First Increments the X value and then assign to Y.