The question above has multiple choices as follows.
<span>a.
</span>App extensions
<span>b.
</span>Sitelink extensions
<span>c.
</span>Structured snippet extensions
<span>d.
</span>RSLAs (remarketing lists for search ads)
The correct answer is (A) App extensions
App extensions are a great way for people to access your
website. They allow you to link to your tablet or mobile app from your text adds.
If you want to drive app downloads, app promo ads might be the best option.
Answer:
The program written in C++ is as follows'
#include<iostream>
using namespace std;
int main()
{
string names[3];
cout<<"Please enter three names: "<<endl;
for (int i = 0; i< 3;i++)
{
cin>>names[i];
}
for (int i = 2; i>= 0;i--)
{
cout<<names[i]<<endl;
}
return 0;
}
Explanation:
This line declares an array for 3 elements
string names[3];
This line prompts user for three names
cout<<"Please enter three names: "<<endl;
This following iteration lets user input the three names
for (int i = 0; i< 3;i++) { cin>>names[i]; }
The following iteration prints the three names in reverse order
for (int i = 2; i>= 0;i--) { cout<<names[i]<<endl; }
Answer:
is this a question or not?