C. database administrators are responsible for organizing a company's data making sure all the data is accurate' available' and secure
A good website to learn coding is called Lynda.com. It costs money but its well worth it!
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;
17, 12.5, 6, and 10. HOPE THIS HELPS