WAEC - Computer Studies (2020 - No. 23)

 

Express P(1 + \(\frac{R}{100}\))\(^N\) as a BASIC programming notation.

 

P x (1 + R ÷ 100)\(^N\)  
P * (1 + \(\frac{R}{100}\))\(^N\)  
P x (1 + R ÷ 100)^N 
P *(1 + R /100) ^N

Explanation

The BASIC programming notation for the expression \(P( 1 + R \div100)^N\) is P * (1 + R/100)^N. This is because in BASIC programming, the multiplication operator is represented by *, division by /, and exponentiation by ^.

Comments (0)

Advertisement