Electronics and Communication Engineering - Microprocessors - Discussion

Discussion Forum : Microprocessors - Section 11 (Q.No. 3)
3.
It is desired to evaluate the expression
F = B cos Y + C cos2 Y + A cos3 Y
The Pascal equivalent to ensure minimum computer time should be written as
F = B * COS (Y) + C * SQR (COS (Y) + A * COS (Y) * COS (Y) * COS (Y)
F = B * COS (Y) + C * SQR [COS (Y)] + A * COS (Y) * SQR [COS (Y)]
F = B * COS (Y) + C * COS(Y) * COS (Y) + A * COS (Y) * COS (Y) * COS (Y)
X = COS(Y)
Z = SQR (X)
F = B * X + C * Z + A * X * Z
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.