The programming language used to write and modify Excel macros is ________

Fill in the blank(s) with the appropriate word(s).


Answer: Visual Basic for Applications, VBA

Computer Science & Information Technology

You might also like to view...

Which is the correct way to load an array named WorkHours with the number of hours that five employees worked last week?

a. ```Declare WorkHours[5] As Float Declare J As Integer For (J = 0; J<=4; J++) Write “Input number hours worked for employee” + J+1 Input WorkHours[J] End For``` b. ```Declare WorkHours[4] As Float Declare J As Integer For (J = 0; J<=4; J++) Write “Input number hours worked for employee” + J+1 Input WorkHours[J+1] End For``` c. ```Declare WorkHours[5] As Float Declare J As Integer For (J = 0; J<=5; J++) Write “Input number hours worked for employee” + J Input WorkHours[J+1] End For``` d. None of these are correct

Computer Science & Information Technology

Which of the following statements about Cs random number generator is false?

A. The seed can be defaulted or set by the seed random number function (srand). B. The random number function (rand) generates both integral and real numbers. C. A random number can be scaled to any range allowed by the computer. D. By definition, C can generate only pseudorandom numbers. E. The random number functions are found in stdlib.h.

Computer Science & Information Technology

?Identify a style rule that is used to remove bullets from an unordered list of check boxes in a form by specifying none as the value of the list-style-type property.

A. ? ul {list-style-type: none;} B. ? {list-style-type: none;} C. ?form {list-style-type: none;} D. ?form ul {list-style-type: none;}

Computer Science & Information Technology

What is Web 2.0?

What will be an ideal response?

Computer Science & Information Technology