Answer:
#include <iostream>
#include <cstdlib>
using namespace std;
int* integerArr( int number);
int main(){
int* address;
address = integerArr(5);
for ( int i = 0; i < 10; i++ ) {
cout << "Address of the integer array: ";
cout << *(address + i) << endl;
}
return 0;
}
int* integerArr( int number){
int myArr[number];
for (int i = 0; i < number; ++i) {
myArr[i] = rand();
}
int* ptr= myArr;
return ptr;
}
Explanation:
The C++ source calls the defined pointer function "integerArr" with an integer argument to declare arrays of dynamic length, in the main function of the program and the items of the array are printed on the screen.
Answer:
Short term memory
Explanation:
Is the capacity an individual has to hold on to a small amount of information for a short period of time without altering it, it is used to remember information like phone numbers, passwords etc. It is also known as primary or active memory.
If short time memories is not rehearsed, they don't last and are easily forgotten, they actually last for about 20-30 seconds.
Aspects of short term memory :
1. Limited capacity : in a short term memory at most 7 items can be stored at a time.
2. Limited capacity : information is short lived and can be lost through distraction and with time.
3. Encoding.
The neologism created as a result of the information age is Bromance (meaning "a male friendship").
<h3>What is Neologism?</h3>
A neologism, is known to be a word, or phrase that tells or implies the process of an isolated thing entering common use, but have not been fully taken in by all.
Note that The neologism created as a result of the information age is Bromance (meaning "a male friendship").
Learn more about neologism from
brainly.com/question/9724482
#SPJ1
I would suggest the answer would be both A and D, mail merge is used to specify different field for different recipients.