Answer:
Processor
Explanation:
The processor handles large amounts of logical information (not storage or graphical), since this is what he is struggling with he likely needs a better CPU.
The answer to the question is: encapsulation
Answer:
understanding component interaction
Answer:
SELECT paintname, COUNT(paintname) as count_paintname
FROM paint
GROUP BY paintname HAVING COUNT(paintname) > 2
ORDER BY paintname
Explanation:
The structured query language or SQL statement returns two columns of paintname and the count of the distinct paint names in the paint table with rows of grouped paint names greater than two and in the ascending order of the names.