Answer:
<u>Source Port</u>
Explanation:
When a connection is establish for an application, it assigns a port that is not in use as the source port. Such ports are known as ephemera ports, which are not related to specific protocol and are only allocated for the period of the connection. All data received on this port (until the connection is disconnected) is sent on to that application.
Answer:
Answer to the question:
Explanation:
At 5ºC:
dynamic viscosity
: 1.74 N.s/m²
Kinematic viscosity: 1.40 m²/s
At 100ºC:
dynamic viscosity: 2.17 N.s/m²
Kinematic viscosity: 2.30 m²/s
The answer would be A or D
Answer:
#include<iostream>
Using namespace std;
int main()
{
int n, qty;
double price, amount;
cout<<"Number of items ";
cin>>n;
cout<<"ITEM<<"\t"<<"QUANTITY"<<"\t"<<"PRICE"<<"\t"<<"ITEM TOTAL";
for(int i= 1; I<= n; i++)
{
cin>>qty;
cin>>price;
amount = qty * price;
cout<<i<<"\t "<<qty<<"\t"<<price<<"\t"<<amount;
}
}
Explanation
The above program is written in C++ programming language
5 variables are declared and used in the program
n is declared as an integer to represent the total number of items
qty is declared as integer to represent the total quantity of each item
price is declared as double to represent the amount of each individual item
amount is declared as double to represent the total amount of an item; it is gotten by qty * price
i is declared as integer to iterated between each items
The amount of each item is calculated within the iteration and also printed immediately
Hard wood is gritty and soft wood is smooth wood , because they have different texture