<u>Answer:</u>
<em>D. three crashes within three years.</em>
<u>Explanation:</u>
Rules differ from Country to Country. <em>In United States Of America, the traffic rules are so strict and the process of License</em> is followed strictly and people who are violating rules gets a penalty or punishment in such a way that it changes their <em>mindset to follow the traffic rules strictly.</em>
All these are done to <em>safe guard people, avoid injuries and sudden loss of death due to accidents.</em>
So if a driver has done three crashes within <em>36 months of time, then the driver license is likely to get cancelled within 90 days.</em>
<em>In order to avoid this it is necessary for the driver to appear for improvement course of driving and appear for the test once again.</em>
I would suggest the answer would be both A and D, mail merge is used to specify different field for different recipients.
The Carbon Monoxide will build up in the inside of the car by venting through, causing the passengers to breathe it. It will first make them ill, then kill them. They cannot detect this gas
Answer:
<em>Written in C++</em>
#include<iostream>
using namespace std;
int firstLast2(int arr[], int n);
int main()
{
int n;
cout<<"Number of Elements: ";
cin>>n;
int myarray[n];
for(int i = 0; i<n;i++)
{
cin>>myarray[i];
}
firstLast2(myarray, n);
return 0;
}
int firstLast2(int arr[], int n){
if(arr[0] == 2 || arr[n - 1] == 2)
{
cout<<"True";
}
else
{
cout<<"False";
}
}
Explanation:
<em>I've added the full source code as an attachment where I used comments to explain difficult lines</em>