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 );}

2
1
0.5
0.25
9

ANSWER DOWNLOAD EXAMIANS APP

C Programming
String concatenation means -

Partitioning the string into two strings.
Comparing the two strings to define the larger one.
Merging two strings.
Extracting a substring out of a string.
Combining two strings.

ANSWER DOWNLOAD EXAMIANS APP