<em>Keyboard -----> Input device</em>
<em>Printer --------> Output device</em>
<em>mouse ---------> Input device</em>
<em>Monitor --------> Output device</em>
<em>CD roam ------> Input device</em>
<em>Projector ------> Output device</em>
C) Debugging. Debugging is when you fix the errors in your code
<h2>Start</h2>
The rectangle shape in flowchart is used to capture process steps like basic tasks or actions in your process.
Procedure SumEvenOdd(stdin: array [0..100] of integer)
var
i, sum_even, sum_odd: integer;
begin
for i := 0 to 100 do begin
if stdin[i] < 0 then
break;
if stdin[i] mod 2 = 0 then //even number
sum_even := sum_even + stdin[i]
else
sum_odd := sum_odd + stdin[i];
ShowMessage('sum of even is ' + IntToStr(sum_even) + ' ' + 'sum of odd is' + IntToStr(sum_odd) ) ;
end;
end
The supporting document that he should include to show the purpose, subject, and technical details of the designs is a link and also user experience.
<h3>How do you create a digital portfolio?</h3>
- To create a good Digital Portfolio, one can:
- Use their strongest samples.
- Include all the detailed information.
- Look into the user experience.
- Test run digital portfolio
- Show forth your unique creative style.
Note that in the above case, The supporting document that he should include to show the purpose, subject, and technical details of the designs is a link and also user experience.
Learn more about portfolio from
brainly.com/question/24811520
#SPJ1