SFA software which is used <span>to automate the business tasks of sales.</span>
Answer:
b-Nested Loops
Explanation:
To create a 1-D array we use single loop.For example:-
int a[10];
for(int i=0;i<10;i++)
{
cin>>a[i];
}
Taking input of a 1-D array.
For creating a 2-D array we use nested loops.
int a[row][column];
for(int i=0;i<row;i++)
{
for(int j=0;j<column;j++)
{
cin>>a[i][j];
}
}
Hence the answer for this question is nested loops.
Answer:
Our brain as a central information processor vs. computer having a central processing unit
Our brain takes sensory input → processing/ sense making → in order to produce behavior as output. Computers work similarly: information input → processing → output task
Computers requires both hardware and software to function. Our body is essentially hardware, what we learn from formal education and informal life experiences are software.
Explanation:
It is essential to continually be learning about new technology.(APEX VERIFIED)