Question 2


main()
{
    int interest_rate = 1 + 26 / 32;
    float capital = 13000;
    float annual_interest;

    annual_interest = capital * interest_rate * 1.0 / 100.0;
}

What is the final value of  annual_interest

annual_interest  =  

SKIP THIS QUESTION