Answer:
I think it's input, not sure tho
Answer:
Option C
Explanation:
All of the following are true about data science and big data except No digital data is stored in traditional databases
Reason -
Data generated in current time is of large size and is also complicated. Traditional data bases such as SQL databases etc. are not capable to store data that is changing at a fast pace and has huge volume, veracity, variety and velocity. But big data platforms such as Hadoop can store big data and process it speedily and easily.
I would suggest the answer would be both A and D, mail merge is used to specify different field for different recipients.
Answer:
void printC()
{
int i, j;
for (i = 0; i < 4; i++) //i indicate row number. Here we have 5 rows
{
printf("C"); //print C for every row
for (j = 0; j < 6; j++) //j indicate column number. Here we have 7 Rows
{
if (i == 0 || i == 4) //For first and last row
printf("C"); //print 'CCCCCCC'
else if (i = 1|| i= 3) //for Second forth row
printf("C + +"); //print 'C + +'
else if (i = 2) For second row
printf("C +++++"); //print 'C +++++'
else
continue; //to jump to next iteration
}
printf("\n"); // print in next line
}
}