Answer:
TRUE
Explanation:
The array is allow to store the multiple values but with same data type.
It cannot store element with different data type.
For example:
int array[] = {1, 'b', 8.7, 9, 'z'}
the above is wrong way to declare the array.
the correct ways is:
int array[] = {1,2,3,4};
float array[] = {1.2, 3.4, 9.6};
we can store only same data type element in multiple tiles.
The main difference between the RAM and the CPU is the roles they play in a computer. The CPU is the actual part that does the computing while the RAM only holds the data.
Pick up any pieces that fell off and put them on ice in a plastic bag and bring them with her to the hospital. They can probably be reinstalled.
Answer: Database middleware
Explanation:
Database connectivity is the technique by which application programs makes the interaction and transfer of data storage . The connectivity of the database of the software is called database middleware, as it acts as a piece of software that makes connection as a middle-factor between the application program and the collection of data.
Therefore, database connectivity is also called as database middleware.