Answer:
1. the number of employees using each computer
2. the number of networked computers
Explanation:
In modern times, instead of the old passing of physical files in and out of different departments of the firm, business firms are now using networks to conduct their day to day activities. These activities are work shared between the employees in the firm.
However, network design is affected by certain factors. These factors are:
1. Number of users connected to the network: in this case, good examples are: the number of employees using each computer and the number of networked computers
Other factors include
2. software,
3. viruses,
4. hardware, and
5. connection.
A domain refers to a group of computers that are part of a network and share network resources, like your home<span> computers all linked together sharing a printer. The user logs in to the domain and gains access to the resources. Several systems may be involved. The computer itself is referred to as a server.</span>
Answer:
//program in C++(Visual studio).
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{
// variable
int num;
cout<<"Enter a number greater than 1 and less than 51:";
// read input number
cin>>num;
// check input is in between 1-50
if(num<=1||num>50)
{
cout<<"Invalid input!!"<<endl;
// exit the program
exit;
}
else
{
// sum variable
int sum=0;
// find sum of all odd numbers
for(int a=1;a<=num;a++)
{
if(a%2!=0)
sum+=a;
}
// print sum
cout<<"Sum of odd numbers from 1 to "<<num<<" is:"<<sum<<endl;
}
return 0;
}
Explanation:
Read a number from user and assign it to variable "num".If input number
is less than 1 or greater than 50 exit the program.otherwise find the sum
of all odd numbers from 1 to "num".Print the sum of odd numbers.
Output:
Enter a number greater than 1 and less than 51:-5
Invalid input!!
Enter a number greater than 1 and less than 51:55
Invalid input!!
Enter a number greater than 1 and less than 51:15
Sum of odd numbers from 1 to 15 is:64
You use the <span>NTFS encrypt attribute.</span>