Answer:
the makers of PC is Charles's babbage.analog is has small amount of ram
Answer
What you are needing here is a Point of entry system for website.
You can do this with Wordpress - where users can register to access. They sign up using wordpress and it's many plug ins.
They would have to choose a email and password to register and that would give them requirements to log back in.
WIth a password to their email you would be able to tell exactly how many times the came in and out of the website.
Explanation:
Answer:
2. Measurable Goal
Explanation:
If she works hard, she can open 5 more customer accounts in time. I tried my best to answer this question, hope it helps!
Second Generation Computer
1.It was established in 1956-1964.
2.The main component is Transistor.
3.ex=CDC 3600
Fourth Generation Computer
1.It was established from 1917-2010
2.The main component is VLSI
3.ex=Star 1000.
If you refer to Computer Book then you will be getting more information please Generation of Computer.
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