A polynomial f(x) is represented by the following array:{1,1,1,1, 1}. What will be the value of f(1)? A. 4 B. 3 C. 1 D. 5
Answers
Answered by
3
Answer:
C. 1
Step-by-step explanation:
f(x)={ 1,1,1,1,1}
so, it consists of 5 values each value is represented as
f(0)=1
f(1)=1
f(2)=1
f(3)=1
f(4)=1
As we know array initialisation starts with zero so , f(1) values will be 1 .
Similar questions