Answer:
The program in Qbasic is as follows:
INPUT X
Y = 2*X^2- 3
PRINT Y
END
Explanation:
The question is incomplete, as the expression to solve for y is not given.
So, I will make use of the following expression: [tex]y = 2x^2- 3[/tex]
The explanation is as follows:
This gets input for X
INPUT X
This calculates Y using the assumed expression. (Replace this line with the original expression)
Y = 2*X^2- 3
This prints Y
PRINT Y
This ends the program
END