The answer & explanation for this question is given in the attachment below.
Answer:
loop or a repeating block. I think it’s this because I like robotics and I have to know a lot of different kinds of blocks.
Explanation:
This is why.
All of the answers above are correct
Answer:
c.
Explanation:
Of the following, the greatest advantage of a database architecture is that data redundancy can be reduced. This refers to data being unintentionally repeated within the database causing space to be taken up unnecessarily. Database architecture allows for this problem to be addressed and prevented.
Answer: The code below can display directory as stated in the question
Explanation:
char *
gnu_getcwd ()
{
size_t size = 100;
while (1)
{
char *buffer = (char *) xmalloc (size);
if (getcwd (buffer, size) == buffer)
return buffer;
free (buffer);
if (errno != ERANGE)
return 0;
size *= 2;
}
}