Handouts
see the image for reference
C because it’s the smartest thing to do and let the other people get used to each other
Answer:
In C++:
#include<iostream>
#include<vector>
using namespace std;
int main(){
int len, num;
vector<int> vect;
cout<<"Length: ";
cin>>len;
for(int i = 0; i<len;i++){
cin>>num;
vect.push_back(num);}
vector<int>::iterator iter;
for (iter = vect.end() - 1; iter >= vect.begin(); iter--){
cout << *iter << ", ";}
}
Explanation:
This declares the length of vector and input number as integer
int len, num;
This declares an integer vector
vector<int> vect;
This prompts the user for length
cout<<"Length: ";
This gets the input for length
cin>>len;
The following iteration gets input into the vector
<em> for(int i = 0; i<len;i++){</em>
<em> cin>>num;</em>
<em> vect.push_back(num);}</em>
This declares an iterator for the vector
vector<int>::iterator iter;
The following iterates from the end to the beginning and prints the vector in reverse
<em> for (iter = vect.end() - 1; iter >= vect.begin(); iter--){</em>
<em> cout << *iter << ", ";}</em>
<em />
<em />
<span>The format painter button is found in the <u><em>clipboard</em></u><em> </em>group on the home tab of the ribbon</span>
Answer: Domain controller
Explanation: Active Directory is the technology developed by Microsoft which provides help in centralized handling and managing of the devices on any network. It has the ability of operating internet servers as well as local servers.
Domain controller is the main server unit for where the database of Active directory is deposited.It keeps the records related with standards, authentication , authorization etc , which are defined as the domain security data record.