An array is a set of values that are logically related to each other, such as the number of students in each grade in a grammar school.
An array allows you to refer to these related values by the same name and to use a number, called an index or subscript, to tell them apart. The individual values are called the elements of the array. They are contiguous from index 0 through the highest index value.
A control array is a group of controls that share the same name type and the same event procedures. Adding controls with control arrays uses fewer resources than adding multiple control of same type at design time.
Numeric array has numbers(+integers) that represent the values Associative array has strings that represent the values
Explain the difference between capability and control.
the control measure is the condition that controls a hazard. the monitoring procedure is the recording to make sure the safe levels are not exceeded
In a controlled experiment, the control variable remains constant while the experimental variable changes with each trial of the experiment.
difference between as on and as at
A loop usually referred to the program flow control with possible repetition of executing the same codes, an array is an abstraction of fixed size container. 2 different concepts.
Numeric array has numbers(+integers) that represent the values Associative array has strings that represent the values
When we declare an array of characters it has to be terminated by the NULL , but termination by NULL in case of string is automatic.
Vectors are thread safe but array lists are not. Hence array lists are faster than Vectors.
difference between feedback and control
Using and gate - pla is programmable while pal is fixed
A Magician has a cunning array of stunts ...........................................................................
List is not sync'd as a vector is.
A numericial array is an array with keys made up of only integers. An associative array is an array with keys made up of anything that is not an integer. In some languages, it is possible to mix integer keys and non-integer keys into a mixed array.
Only if the non-primitive data types are actually controls, such as an array of label controls, or an array of edit boxes. However, a control array is still an array. The only difference is that the values will likely be resource handles (objects that refer or point to the actual object which will be stored elsewhere in memory) rather than an actual value itself. That is, an array of primitive data types stores the actual value in the array itself.
arrayarray_diff(array$array1,array$array2[,array$...] )
Array elements are all members of the same variable, indexed in a logical manner. variables are distinct objects which must be referred to distinctly. The main functional difference is that a program can iterate over an array without the programmer knowing the original size of the array or explicitly which member to access.