C Programming
What will be the value of sum after the following program is executed?void main(){ int sum=1, index = 9; do{ index = index – 1; sum *= 2; }while( index > 9 );}

1
0.5
0.25
9
2

ANSWER DOWNLOAD EXAMIANS APP

C Programming
"My salary was increased by 15%" Select the statement, which will EXACTLY reproduce the line of text above.

printf("My salary was increased by 15%!");
printf("My salary was increased by 15%%!");
printf("My salary was increased by 15/%!");
printf("My salary was increased by 15'%'!");

ANSWER DOWNLOAD EXAMIANS APP