y ax 2 bx c-02774
y = ax<sup>2</sup> + bx + c.
This multiple choice question (MCQ) is related to the book/course vu cs201 Introduction to Programming. It can also be found in vu cs201 Lecture No.03 - Quiz No.1.
y = ax2 + bx + c.
in C will be written as y = a * x + x + b * x + c.
in C will be written as y = a * x * x + b * x * c.
in C will be written as y = a * x * x + b * x + c.
None of the given