Answer:
The answer to this question is given below in the explanation section.
Explanation:
First, we need to know what is the graphic user interface (GUI)?
A GUI is a form of user interface that allows the users to interact with electronic devices through graphical icons and audio indicator such as primary notation, instead of a text-based user interface as in MS-DOS. Users interact through such devices using their icon, navigation using the mouse cursor, etc , and touching. In short, an interface that has graphical options.
so, in the context of the question, the following are examples of GUI.
Virus protection software: Because virus protection software has a graphical interface and user can use it easily by using its graphics and exploration functionality.
Icon: icon is an example of GUI because ICON built on other many graphics parts. In short, the icon is part of the GUI.
The followings are not the example of GUI:
Microphone and USB cord because these are the electronic parts and they don't possess the GUI.
Answer:
Option A i.e., software package.
Explanation:
Prewritten, available on the market the software packages, which not necessitate a company's desire to actually compose its software for certain functionalities, will be applied to as software packages.
A software package is essentially a finite number of programs or software components that function together so that they achieve different tasks and objectives.
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:
the answer is quick access toolbar