9? Cause thats all not to smart or anything rlly lol
'Splitting' involves dividing a single column into multiple columns.
'Validation' involves checking the data for correctness. (there slight possibility I am wrong for this one)
I hope I provided some great assistance for you, have a good day, young programer.
The answer is definitely (A. SQL server) it was released back in 2010 and is huge!
Let us know if there is anything else you need to know.
Mark brainlest :)
Answer:
Referencial Integrity Contraint
Explanation:
The referential integrity constraint states that the customer ID i.e (CustID) in the Order table must match a valid CustID in the Customer table. Most relational databases have declarative referential integrity. That is to say, when the tables are created the referential integrity constraints are set up so as to maintain the quality of information.
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.