Describe the steps to interpolate a series of values between starting and ending values.

What will be an ideal response?

Select the range with the first cell containing the starting value, blank cells for middle values, and the last cell containing the ending value. In the Editing group on the Home tab, click the Fill button, and then click Series. Specify whether the series is organized in rows or columns and the type of series to interpolate. Check the Trend check box. Click the OK button to insert the interpolated series into the middle cells.

Computer Science & Information Technology

You might also like to view...

Which of the following choices should not be included in an assessment plan?

A. Product weaknesses B. Timeline and schedule C. Scope D. Resources required

Computer Science & Information Technology

Based on the function prototype, what is the correct call statement for WriteASentence?

```void WriteASentence(char s[]); int main() { char sentence[25] = “How now brown cow.”.; char letter = ‘y’; //what is the call statement for WriteASentence``` A. WriteASentence( sentence ); B. WriteASentence( letter, sentence ); C. WriteASentence( sentence [ ] ) ; D. WriteASentence( letter = ‘y’);

Computer Science & Information Technology