Answer:
<h2>Rom</h2>
Explanation:
ROM is memory containing hardwired instructions that the computer uses when it boots up, before the system software loads
Answer:
A lot can happen, depending on the use of the variable
Explanation:
Lets create a position variable, a common variable in games.
Vector3 position = new Vector3(0, 0, 0);
The above variable initialization creates a new Vector3 object. The Vector3 class contains 3 properties, X, Y, and Z. When you assign the variable 'position' the new Vector3 object, the variable 'position' contains an instance of Vector3 where
X = 0,
Y = 0,
and Z = 0.
The variable 'position' can be used to set the position of a player, or an object.
We can reuse this variable when you want the object or player to move.
position.X = 29
position.Y = -14
position.Z = 47
now the object/player's position is (29, -14, 47).
Variables can be used for basically everything you need in programming, from storing a position, to storing the result of a complex math equation.
The area of a square is simply the square of the side. So, you only need to write a program that receives a number as input, which is the side of the square, and returns that number squared, which will be the area of the square.
You didn't specify any language, so for example here's a C implementation that receives the side from the user and returns the area:
#include <stdio.h>
int main()
{
double side, area;
do{
printf("Enter the side of the square (must be >0): ");
scanf("%lf", &side);
} while(side<=0);
area = side * side;
printf("The area is %lf", area);
}
Some example's of coding affecting real life:
- Robots used in factories. can work in extreme conditions.
- Automatic Heater or Air Conditioner.
- Expert Systems used in for Medical Use.
A. number of addresses is 65536
b. memory capacity is 128 kbytes or 131072 bytes
c. The last memory address is FFFF which is 65535