Answer:
Internet Protocol (IP)
Explanation:
The Internet Protocol (IP) is a protocol, or set of rules, for routing and addressing packets of data so that they can travel across networks and arrive at the correct destination.The Internet Protocol is the principal communications protocol in the Internet protocol suite for relaying datagrams across network boundaries. Its routing function enables internetworking, and essentially establishes the Internet.
Nope I'm not having any trouble with this application try redownloading
4. Everything else has to be adjusted before you enter print settings.
Answer:
Pac-Man Battle Royale, Space Invaders Frenzy
Explanation: Pac-man Battle Royal, came out in 2011 not that long ago. Space Invaders Frenzy came out in 1978. That came out A WAY long time ago.
Answer:
// program in C++.
#include <iostream>
using namespace std;
// main function
int main() {
// variables
int y, count=1;
double s_amt;
// interest rate
const double rate = 0.08 ;
// ask to enter first year amount
cout << "Enter the first year's sale amount: ";
// read amount
cin >> s_amt;
// ask to enter years
cout << "Enter the number of years to project the goals: ";
// read years
cin >> y;
// find goal amount of each years
do{
// print year and goal for that year
cout <<"Goal for year "<<count<<" is "<<s_amt<<endl;
// increase the count
count +=1;
// find new Goal amount
s_amt += s_amt*rate;
} while(count <= y);
return 0;
}
Explanation:
Read the first years sale amount from user and assign it to variable "s_amt". Read the years from user and assign it to variable "y".Initialize interest rate "i=0.08".Then with the help of do while loop find goal amount of each year.
Output:
Enter the first year's sale amount: 25000
Enter the number of years to project the goals: 4
Goal for year 1 is 25000
Goal for year 2 is 27000
Goal for year 3 is 29160
Goal for year 4 is 31492.8