If you were using relative cell references, the formula =A3+A4 would change to ____ when copied from cell A5 to cell B5.

A. =B3+B4
B. =B4+B5
C. =$B3+$B4
D. =B$4+B$5

Answer: A

Computer Science & Information Technology

You might also like to view...

Answer the following statements true (T) or false (F)

1. Hidden fields are used on a second form when multiple forms are required to capture all the transaction data. 2. An event-response chart may be used to list the variety of events that occur when there are complicated interactions on a Web form. 3. Dynamic Web pages change themselves as the result of the server action. 4. A disadvantage of using dynamic Web pages is that they may not be compliant with the American Disabilities Act.

Computer Science & Information Technology

How many private members does an object of class D have?

Consider the class inheritance. ``` class B { public: B(); B(int nn); void f(); void g(); private: int n; }; class D: public B { public: D(int nn, float dd); void h(); private: double d; }; ``` a) 0 b) 1 c) 2 d) 3 e) 4 f) 5

Computer Science & Information Technology