Since at present number user or nodes in an organization counts is 100 and it can be further extended. Moreover concurrent at presented is 25 nodes is active.
<u>Explanation:</u>
So as best practice network administrator has keep in mind and select hardware application.
1. Server with high end rams and further extendable.
2. Minimum life of hardware such as routers, switch or managed or firewall should be considered or two years. But to technology improvement it is possible for 1 year only
3. Upgradable hardware appliances and software updates should be possible with mini cost effect.
4. Network security and update or upgradable workstation or desktop or laptop to be consideration.
5. Functional operation of an organization should run smoothly.
Answer:
72.80 % more energy will be consumed.
Explanation:
First of all, let us have a look at the formula of energy for a processor.

Where,
is the energy
is the capacitance
is the voltage and
is the clock rate.
Let
be the energy of older processor.
be the capacitance of older processor.
be the voltage of older processor
be the capacitance of older processor
So,
....... (1)
and
Let
be the energy of newer processor.
be the capacitance of newer processor.
be the voltage of newer processor
be the capacitance of newer processor
....... (2)
Dividing equation (2) with equation (1):

As per given statement:



Putting the values above:

Energy consumed by newer processor is <em>1.728 </em>times the energy consumed by older processor.
OR
<em>72.80 %</em> more energy will be consumed by the newer processor.
Red underline. Hope this helps.
Answer:
The correct answer to the following question will be "True".
Explanation:
The "kernel" as shown at the core of your OS would be the central machine program. The program facilitates the essential functions of a computer processor, including coordinating activities, executing programs, and managing devices. This allows users to define a series of directions to try to resolve the connections to running program files in an order of preference.
So, the given statement is true.
Answer:
// program in C++.
#include <bits/stdc++.h>
using namespace std;
int main() {
// variable
int num;
cout<<"Enter the number between 20 and 98: ";
// read number
cin >> num;
while(num<20||num>98)
{
cout<<"Wrong input!!enter number between 20-98 only:";
cin>>num;
}
cout<<"The output is: ";
while(num % 10 != num /10)
{
// print numbers.
cout<<num<<" ";
// update num.
num--;
}
// display the number.
cout<<num<<endl;;
return 0;
}
Explanation:
Read a number from user and assign it to variable "num".Check if entered number is in between 20-98 or not.If input number is less than 20 or greater than 98 then ask again to enter a number between 20-98 until user enter a valid input.Then print the countdown from input number till both the digit of number are same.
Output:
Enter the number between 20 and 98: 99
Wrong input!!enter number between 20-98 only:12
Wrong input!!enter number between 20-98 only:93
The output is: 93 92 91 90 89 88
Enter the number between 20 and 98: 77
The output is: 77