Have them post more positive outcomes and help them understand that what they post stays there forever
Answer:
Well it's human behavior to be accepted amonst your own kind and the need to gain reputation as the body rewards you with stimuli for more of the "Like Button", this is a psycological nightmare knowing you are chained to your phone as you are afraid on missing out as your community or generation goes by as theres a whole lot of story behind jacinda, the image brought to me is enough to frame my own story about her.
What you want to do is create a shallow depth of field, this is to make your background blur and focus more on the subject. Set a large aperture, which is a low f-number, around f/1.8 or f/2 and then take a few test shots to see if this is what you would like. If you want everything to be focused in frame just do the opposite.
Answer:
#include <iostream>
#include<string.h>
using namespace std;
void printCharacter(string name){
for(int i=0;name[i]!='\0';i++){
cout<<name[i]<<endl;
}
}
int main()
{
string name;
cout<<"enter the name: ";
cin>>name;
printCharacter(name);
}
Explanation:
first include the two libraries iostream for input/output and string library for using the string.
then, create the main function and declare the variable type string.
cout instruction is used o display the message on the screen.
cin is used to store the value in the name variable.
after that, call the function. The program control move to the the function. In the function for loop is used to print the character one by one until end of the name.
Answer:
B. (n2) * n.
Explanation:
The highest complexity is (n2)*n because on solving it will come out to be n³.So the growth rate is of cubical order which is the highest among the options.
(n) * 2n is of the order of square.On solving it will be 2n².
n² is also of the order of square.
nlogn complexity is less than n² but greater than n.
3n is of linear complexity.It has the lowest complexity among the options.