What is an array?

A. A series of satellite dishes in the New Mexico desert.
B. A group of variables of the same data type and name, indexed as an int.
C. An operator in C++ that in used to perform mathematics.
D. A series of variables that are accessed by an integer.


B. A group of variables of the same data type and name, indexed as an int.

Computer Science & Information Technology

You might also like to view...

Which of the following declarations and initializations will not cause a compiler error?

Consider the following inheritance hierarchy that is used in a video game. ``` Character / \ Friend Villain / \ / \ WiseMan ShopKeeper Dragon Skeleton | | FlyingDragon EliteSkeleton ``` ``` Character c = new FlyingDragon(); FlyingDragon f = new Character(); Dragon d = new Villain(); Villain v = new Skeleton(); Dragon d = new ShopKeeper(); ``` What will be an ideal response?

Computer Science & Information Technology

Which input type displays a browse button to locate and select a file?

A. type= "attach" B. type= "find" C. type= "file" D. type= "browse"

Computer Science & Information Technology

Translate the following problem statements into equations. Then solve the equations to find the requested result.

Find a number such that three times the number minus 6 is equal to 18. Let n — number Equation: 3n — 6 = 18 Solve for n: 3n=18+6 n = 24 / 3 n = 8

Computer Science & Information Technology

A _____ is logically impossible in a data flow diagram (DFD) because a process must act on input, shown by an incoming data flow, and produce output, represented by an outgoing data flow.

A. spontaneous combustion B. gray matter C. black hole D. server farm

Computer Science & Information Technology