When you open MS Word, selecting the insert option and clicking
SmartArt, will pop up SmartArt dialog box. Double-clicking on one of the
graphic options in the middle panel will automatically select and place the
graphic art you want. It is an easy way of inserting a SmartArt of your choice without selecting
the art itself and clicking OK.
Answer:
Basically it creates a unique identifier for each row in your table and that can help you link your table to other tables using primary key as link
Explanation:
"Primary key allows you to create a unique identifier for each row in your table. It is important because it helps you link your table to other tables (relationships) using primary key as links."
Answer:
C communication software
Explanation:
C communication software IS THE ANSWER
Explanation:
Let, DG is the datagram so, DG= 2400.
Let, FV is the Value of Fragment and F is the Flag and FO is the Fragmentation Offset.
Let, M is the MTU so, M=700.
Let, IP is the IP header so, IP= 20.
Let, id is the identification number so, id=422
Required numbers of the fragment = ![[\frac{DG-IP}{M-IP} ]](https://tex.z-dn.net/?f=%5B%5Cfrac%7BDG-IP%7D%7BM-IP%7D%20%5D)
Insert values in the formula = ![[\frac{2400-20}{700-20} ]](https://tex.z-dn.net/?f=%5B%5Cfrac%7B2400-20%7D%7B700-20%7D%20%5D)
Then, =
= ![[3.5]](https://tex.z-dn.net/?f=%5B3.5%5D)
The generated numbers of the fragment is 4
- If FV = 1 then, bytes in data field of DG=
and id=422 and FO=0 and F=1.
- If FV = 2 then, bytes in data field of DG=
and id=422 and FO=85
and F=1.
- If FV = 3 then, bytes in data field of DG=
and id=422 and FO=170
and F=1.
- If FV = 4 then, bytes in data field of DG=
and id=422 and FO=255
and F=0.
Answer:
// code in C++.
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{
// variables
int length=10,height=7,width=5;
// find the volume of
int vol=length*height*width;
// find the surface area
int sa=2*(length*width+length*height+height*width);
// find the perimeter
int peri=4*(length+width+height);
// print the volume
cout<<"Volume is: "<<vol<<" cm^3."<<endl;
// print the surface area
cout<<"Surface area is: "<<sa<<" cm^2."<<endl;
// print the perimeter
cout<<"Perimeter is: "<<peri<<" cm."<<endl;
return 0;
}
Explanation:
Declare and initialize length=10, width=5 and height=7.calculate volume by multiply length, width and height and assign to variable "vol".Then find the surface area as 2*(length*width+length*height+height*width) and assign it to variable "sa".Then find the perimeter as 4*(length+width+height) and assign to variable "peri". Print the volume, perimeter and surface area.
Output:
Volume is: 350 cm^3.
Surface area is: 310 cm^2.
Perimeter is: 88 cm.