Concept:BASIC uses one-line keyboard symbols: `*` for multiplication, `/` for division, and `^` for exponentiation.Explanation:The given expression is P(1+100R)N.In BASIC, write 100R as `R / 100`.Use `*` instead of the multiplication sign between P and the bracket.Use `^N` to show the power N applied to (1+100R).Therefore, the BASIC expression is written on one line as`P * (1 + R / 100) ^ N`.Answer:`P * (1 + R / 100) ^ N` — Option D.