Answer:
Definitions are
Explanation:
Giga byte - Giga means in SI units. Its a multiple of unit byte. 1 giga byte means 1 billion byte.
Intranet- Intranet is a private network between computers, usually used in an organization for employees to communicate.
Pixel- Is a picture element. Its the smallest addressable point in a picture displayed on the screen of any device.
Telecommunication- Its a mode through which electronic devices transmit information. An information can be a text, data, image, etc.
Modem- Modem stands for "modulator- demodulater". Its a hardware device, that converts data into digital format while sending the data and while receiving it converts digital data into analog format.
Raster graphic- its called bitmap graphics. it uses tiny rectangluar pixels arranged in a grid format to represent an image.
Vector Graphic- They are computer graohics images. They are defined in terms of points on a Cartesian plane, which form polygons when are connected via lines and curves.
GUI- it stands for graphic user interface. It is an interface through which user interacts with electronic devices.
<span>ENIAC was the first commercially successful computer, released in 1946.
</span>The name ENIAC Electronic Numerical Integrator And Computer<span>).</span><span>
It was </span>used to calculate artillery firing tables for the United States Army's Research Laboratory.
It was invented by J. Presper Eckert and John Mauchly at the University of Pennsylvania.
Enter tab would complete an entry. I hope that helped ya!
Answer:
This is using c++ syntax, you might need to make slight adjustment for other languages.
First activity:
string firstSnack = "chips";
string secondSnack = "pizza";
string thirdSnack = "apples";
string bestSnack = firstSnack;
bestSnack = secondSnack;
Second activity:
double apple = 0.5;
double banana = 0.75;
double orange = 1.43;
double total = apple + banana + orange;
Explanation:
When first declaring a variable, you want to specify the type (such as int, double, string, bool, etc.) and then the name. You can set the variable value in the declaration, or you can set it to a value later in the program by not having the equals sign and whatever comes next.