Answer:
Top down design
Explanation:
Top-down design is an approach that is used to break down the problem into the smaller subpart so that it can be manageable into more clear form.
C programming is the example of a top-down approach while C++ is the example of the bottom-up approach.
The advantages of the top-down design approach are:
1) easy to manage
2) easy to find the error
3) easy to debug
Answer:
The correct answer to the following question will be "Random Access Memory".
Explanation:
Therefore, RAM is the right answer.
A: 3
B: 2
C: 1
D: 0
The answer is D: 0
Boolean variables are variables that have two possible outcomes only: true (1), and false (0). Boolean values are not stored as the words true or false. They are stored as integers: true becomes the integer 1 and false becomes the integer 0. Boolean values evaluate to integers 0 (false) or true (1).