This statement would be TRUE
Answer:
True is the correct answer for the above question.
Explanation:
- The social website is used to connect the people using the internet to communicate. With the help of this, any people can communicate within the world's people.
- If anyone posts their pictures or comment on this type of website, then they need to care for that post or pictures. it means he needs to make decisions to choose the pictures or comments while posting.
- It is because when the user posts the wrong comments or pictures, then their popularity is less in front of the other people called society.
- This concept is also said by the question, hence it is a true statement.
Standing for an exceptional performance would be normal "acceptable" in both scenarios.
Answer:
B. a tag
Explanation:
In the structure definition given below:
struct Employee
{
string name;
int idNum;
};
Employee corresponds to the tag of the structure. The tag is used to create additional instances of the structure. For example:
struct Employee e1;
struct Employee e2;
name and idNum are members of the Employee structure and are referenced using the dot notation. e.g.,
struct Employee e1;
e1.idNum=1;