Answer:
The correct answer to the following question will be option C.
172.16.80.1-172.16.87.254
Explanation:
IP Address: IP Address stands for Internet Protocol Address, a unique numerical label allotted to every computer network that are connected to the network of the computer and communicate through the internet protocol.
- An IP address can be separated by periods and having four numbers that are called Octet. Range of IP address can be from 0 to 255.
- We have to keep the first 21 bits and start setting all from the 22nd bit on to 0 (zero).
- To get the suitable and the correct range of the address, we add and subtract 1 from the given broadcast address i.e.,172.16.85.0/21.
So, option C is the right answer and no other option is usable according to the given explanation and the address given by the administrator.
Answer:
well, as long as there are no right or wrong answers, don't:
look to closely at the screen, as it may mess up your eyes
hold a drink above the computer, as it may spill and cause "sticky keys"
go to sites that you know will give your a computer a virus, cause they cost hundreds of dollars to repair, and some aren't able to come out
go on illegal sites/do illegal operations to the computer itself, because then you won't have a computer
Explanation:
Answer: DAP stands for directory access protocol .It is a protocol that is used for accessing the information from the directory of X.500 protocol.
LDAP(Lightweight directory access protocol) is the software protocol that is present for the simplification process of the X.500 protocol and to make it light-weighted .It is basically a version of DAP in a lightweight form.
I would say A because it was talking about something in the present but what they were talking about was in past. so I would think A
Answer:
The program in C++ is as follows:
#include <iostream>
using namespace std;
int perimeter(int side1, int side2, int side3){
return side1+side2+side3;
}
struct Triangle {
int side1; int side2; int side3;
};
int main(void) {
int side1, side2, side3;
cout<<"Sides of the triangle: ";
cin>>side1>>side2>>side3;
struct Triangle T;
T.side1 = side1;
T.side2 = side2;
T.side3 = side3;
cout << "Perimeter: " << perimeter(T.side1,T.side2,T.side3) << endl;
return 0;
}
Explanation:
See attachment for complete code where comments are as explanation