What will be the value of sum after the following program is executed?<br><pre><code class="c-program">void main(){ int sum=1, index = 9; do{ index = index – 1; sum *= 2; }while( index &gt; 9 );}</code></pre>

Correct Answer: 2