The correct way of writing the expression in Pascal is
N * V * V / 2 + G * H / 3D
N * V * V / 2.0 + G * H / (3.0 *D)
N * V * V / 2 + G * H / 3.0 * D
N * V * V / 2.0 + G * H / 3.0 * D
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option B
Explanation :
Operators must be written. They are not implied.
Be The First To Comment