Answer:
1) TRUE
2) FALSE
3) FALSE
4) TRUE
5) TRUE
Explanation:
1) vertical cross connects connect work stations to the closest data closet TRUE
2) a patch cable is relatively short, from 20 feet to 90 feet
FALSE
3) the dmarc is located at the local telecommunications carrier's office
FALSE
4) the MDF(main distribution frame) is the centralized point of interconnection for an organization's LAN.
TRUE
5 )the IDF (intermediate distribution frame) is a junction point between the MDF and the entrance facility.
TRUE
to helps them to see how the final printed material will appear.
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.
The answer is analyzing choices/options
Analyzing choices/options is one of the several steps of the decision making processes. Analyzing your choices will help you determine how your final decisions will impact yourself and everyone else around you. It is in this step that you will be asking yourself the likelihood of the results of your decisions now and in the future. In addition, this step will help you review the pros and cons of your choices listed in the previous steps.