B. recognition
C. storage
D. the Stroop effect
Answer:b)Recognition
Explanation: Recognition method is the technique which is based upon the similarity of the structure.It basically compares between the received format and the format of the reference on the basis of their structure.It is considered as a good method of the retrieving the image or format which is in storage. This usually results in opting the correct answer or option.
Therefore, the correct answer is option (b).
8
6
4
2
0
Answer:
Start value = 10
end value = 0
step value = -2
Explanation:
Given sequence;
10 8 6 4 2 0
In coding, many times this kind of sequence is generated using a loop.
A loop is a block of statement that is executed multiple times depending on certain conditions.
Typically, a loop contains;
i. a condition, once satisfied, is used to break out of the loop.
ii. a start value, used to begin the loop.
iii. an end value, used to end the loop.
iv. a step value, used to step from one state to the other in the loop.
In the given sequence;
i. the start value is the first value printed which is 10
ii. the end value is the last value printed which is 0
iii. the step value is the difference between any given value and the value next to it. For example, given the first value 10, the next value to it is 8. Therefore, the step value is 10 - 8 = -2
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