Answer:
intranet
Explanation:
An intranet is a private network that you can't access outside the physical boundary of an organization
Answer:
string ** carMakes=new string*[20];
for(int i=0;i<20;i++)
{
carMakes[i]=new string[6];
}
Explanation:
The above written piece of code is in C++ and it will declare and allocate memory on the heap for a 2-D array of strings with the number of rows 20 and number of columns 6 with name of the array carMakes.
To declare a 2-D array in C++ we use new keyword.
Answer:
1. Decision support systems
Explanation:
DSS (Decision Support Systems) are systems that provide supports for decisions, judgments and analysis in an organization. They help in solving problems and in decision-making. With DSS, databases that act as foundation for other information systems can be generated for supervisors helping them to make logical analysis of a particular problem hence solving it.
DSS will actually not give the decision, but will guide the decision maker in making the decision by helping to gather raw facts and useful models which enhance decision making.
C : to determine error rate