Answer:
chemați. mfvd5. fn. cfcfcfcfcfcfcf 4t
The dual-layer-IP allows ipv4 and ipv6 at the network layer to access a single tcp/udp stack.
<h3>What is the dual IP layer?</h3>
The word dual-stack is a word that connote a full or total duplication of all stages in the protocol stack ranging from its applications to the network layer.
Note that the dual-layer-IP method often gives room for a computer to run IPv4 and IPv6 simultaneously at the network layer, and all of the IP stack can access a different TCP/UDP stack.
Learn more about architecture from
brainly.com/question/9760486
plug it into a charger the go to I tunes and it should be there
Answer:
Explanation:
The following code is written in C++, it asks the user for input on number of units sold and places it in a variable called units_sold. Then it asks for the package price and places that value in a variable called package_price. Finally it multiplies both values together into a variable called final_price and adjusts the decimals.
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
// Variables
int units_sold,
final_price;
// ask user for number of units sold
cout << "\nEnter number of units sold: ";
cin >> units_sold;
//ask for Package price
cout << "\nEnter Package Price: ";
cin >> package_price;
// Total amount before discount
final_price = units_sold * package_price;
cout << setprecision(2) << fixed;
cout << endl;
return 0;
}