Suppose that alpha and beta are int variables and alpha 5 a
Solution
Question 26)
Answer is option (c) alpha = 50, As both the alpha and beta are declared and initialised as integers this would result the integer output only. And the statement alpha *= beta means alpha= alpha*beta.
Question 27)
The answer is false, as the /r is used for carriage return which means it takes the pointer to the back to the beginning of the line not to the beginning of the next line. In windows the combination of \'\ \ \' means the same as hitting enter \'\ \' is also the same like enter. but \ is only for carriage return.
Question 28)
Answer is option (d) alpha = 1-beta. The statement is alpha = --beta; The -- operator before the variable is called as predecrement which the decrements the 1 from the variable value. Thus the -- beta will be represented as 1-beta.
