Answer:
the programs and other operating information used by a computer.
Explanation:
Answer:
float avg = 23.5;
Explanation:
Given
The declarative statements
Required
Determine which of them is invalid
<em>Analyzing them one after the other;</em>
int zebraCnt = 40000;
This statement is valid as zebraCnt is correctly declared as type integer
<em></em>
long birdCnt = 222_222_222_222_222L;
This statement is valid as birdCnt is correctly declared as type long
float avg = 23.5;
This statement is invalid as avg is incorrectly declared as type float.
<em>To correctly declare avg, you either change the datatype to double: as follows;</em>
double avg = 23.5;
or <em>append f to the declaration; as follows</em>
float avg = 23.5f;
double avg = 98.32121;
This statement is valid as avg is correctly declared as type double
Hence, the incorrect declarative statement is float avg = 23.5;
Answer:
What is primary storage?
A primary storage device is a medium that holds a memory for short periods of time while a computer is running. Although it has a much lower access time and faster performance, it is also about two orders of magnitude more costly than secondary storage.
A primary storage device may also be referred to as internal memory, main memory, main storage, and primary memory.
Why is primary storage important?
Primary storage provides fast access to the CPU, which allows active programs to deliver optimal performance to the end-user. Speed and usefulness aside, the fact that the loss of power means the loss of data makes RAM a short-term storage solution. In fact, it’s lack of long-term viability is the reason it makes sense to save your progress when working in one program or another.
Answer:
a) tie the exception condition to a processing step
Explanation:
Numbering exception conditions, in a fully developed use case description is helpful to tie the exception condition to a processing step
The fully developed use case description is useful for the documentation of the context, purpose, description, conditions, and workflow of each use case. Activity diagrams give a graphical image of the use case workflow and serve the purpose of illustrating the alternative paths through a business process.
Computer hard ware is any thing physical that you can touch such as the mouse , keyboard hard drive cpu, moniter or if your using a laptop it will be the entire computer its self.