The intersection of a row and a column in a spreadsheet is called a ________

A) text
B) cell
C) record
D) field

B

Computer Science & Information Technology

You might also like to view...

Which is not a factor to consider when choosing a CPU?

A) Clock speed B) Number of cores C) Amount of cache memory D) Whether it has a graphical processor (GPU) built in

Computer Science & Information Technology

What would be the value of discountRate after the following statements are executed?

``` double discountRate = 0.0; int purchase = 1250; if (purchase > 1000) discountRate = .05; if (purchase > 750) discountRate = .03; if (purchase > 500) discountRate = .01; else discountRate = 0; ``` a. .05 b. .03 c. .01 d. 0

Computer Science & Information Technology