Answer:
The answer to this question is given below in the explanation section. The correct answer is A.
Explanation:
The correct answer to this question is:
They restrict access depending on job role.
because the company creates different workspaces for particular departments. Each department allows access to its employee to work and use the assigned resources. Other people from other departments can't use their computers due to security reasons.
However, the following options are not correct.
They connect a company's website with its internal wiki.
They allow a company to organize information. (information is maintained inside in the workspace)
They provide a platform for collaboration.
Answer:
//Here is the for loop in C.
for(n=10;n>0;n--)
{
printf("count =%d \n",n);
}
Explanation:
Since C is a procedural programming language.Here if a loop that starts with n=10; It will run till n becomes 0. When n reaches to 0 then loop terminates otherwise it print the count of n.
// here is code in C++.
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{ // variables
int n;
// for loop that runs 10 times
// when n==0 then loop terminates
for(n=10;n>0;n--)
{
cout<<"count ="<<n<<endl;
}
return 0;
}
Output:
count =10
count =9
count =8
count =7
count =6
count =5
count =4
count =3
count =2
count =1
The packet is
dropped or discarded. By default, a router will send packets
to a network that has been listed in the routing table. If it happens that the
network is not listed, the packet will be discarded or dropped. Packets that do
not have a default route or gateway of last resort are dropped.
An ordinance is the name typically used for a law passed by a local political subdivision, such as a city, county, village, or town. Ordinances may address a wide variety of local issues, from local government structure to speed limits and sign sizes.