<u>Answer is:</u>
Yes, they earn a certification as a graphic designer
<u>Explanation:</u>
And they can do everything that graphic designer do, so that is why they earn a certification of a graphic designer such as Photoshop and adobe illustrator.
I hope you got the answer well. Thanks
True
…………………………………………………..
The default hyperlink color is automatically set when you type
Answer:
#include <iostream>
using namespace std;
int main()
{
string str;
cout<<"Enter the string: ";
cin>>str;
for(int i=0;str[i]!='\0';i++){
if(str[i]=='e'){
str[i]='x';
}
}
cout<<"the string is: "<<str<<endl;
return 0;
}
Explanation:
First, include the library iostream for using the input/output instructions.
Create the main function and declare the variables.
Then, use the cout instruction and print the message on the screen.
cin store the string enter by the user into a variable.
After that, take a for loop and if-else statement for checking the condition if the string contains the 'e', then change that alphabet to 'x'.
This process continues until the string not empty.
Finally, print the updated string.
Answer:
The audience
Explanation:
The correct option is - The audience
Reason -
When writing a technical document -
Always describe things in technical terms.
Write for your readers.
Describe things exactly as they're described to you by subject matter experts.
Technical writing :
Addresses particular readers.
Helps readers solve problems.