This computer science problem involves algorithmic thinking and programming concepts. The solution below explains the approach, logic, and implementation step by step.

ScanSolve AI Answer
Answer
=COUNTIF(B:B, ">10000")
Here are the solutions to the questions:
i) Write a formula that will compute the number of items whose unit price is more than 10,000 Assuming the unit prices are in column B, starting from cell B2: The formula is .
ii) If the formula =$B2*C$2 was placed in cell D2, state the output if it was copied to D3
When the formula =$B2*C$2 from cell D2 is copied to cell D3:
$B2 changes to $B3 because the column B is absolute, but the row 2 is relative and increments to 3.C$2 remains C$2 because the column C is relative (but the column doesn't change from D to D), and the row 2 is absolute.
Therefore, the formula in cell D3 will be \boxed{*=B3*C2*}.c) With an Aid of a diagram, describe the functional units of the Central Processing Unit
A Central Processing Unit (CPU) consists of three main functional units:
+---------------------------------------------------+
| CPU |
| +-----------------+ +-----------------------+ |
| | | | | |
| | Control Unit |<->| Arithmetic Logic | |
| | (CU) | | Unit (ALU) | |
| | | | | |
| +-----------------+ +-----------------------+ |
| ^ ^ |
| | | |
| +-----------------------+ |
| Registers |
+---------------------------------------------------+
Get instant step-by-step solutions to any question. Free to start.
Ask Your QuestionStill have questions?
i) Write a formula that will compute the number of items whose unit price is more than 10,000 Assuming the unit prices are in column B, starting from cell B2: =COUNTIF(B:B, ">10000") The formula is =COUNTIF(B:B, ">10000").
This computer science problem involves algorithmic thinking and programming concepts. The solution below explains the approach, logic, and implementation step by step.