Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

0.3.1 Study the flowchart below and answer the questions that follow: tart num m

ID: 3904518 • Letter: 0

Question

0.3.1 Study the flowchart below and answer the questions that follow: tart num myNumber, myAnswer input myNumber Yes eof7 top No set myAnswer- myNumber2 output myAnswer Q.3.1.1 0.3.1.2 Q.3.1.3 Name the casing used for the variable myNumber? What does eof stand for? ldentify two loop structures that can be used when converting the flowchart to pseudocode. State whether this flowchart is structured or not. Give a reason for your answer. 0.3.1.4 (2) Q.3.2 Tabulate the following software as either application or system software. Microsoft Word Doom 3 Apple ios Pastel Payroll Windows

Explanation / Answer

Q 3.1

3.1.1

Casing used for variable myNumber is camel case.

In camel case each word start with a capital letter except the first word which starts with lower case letter.

3.1.2

eof stands for end of file which is true when end of file is reached.

3.1.3

There are 2 loop structures in given flow chart.

One of the loop structure follows eof i.e. if eof is false then program enters a loop and set myAnswer = 2*myNumber.

Second loop follows output myAnswer i.e. after printing myAnswer program control moves back to input myAnswer.

3.1.4

Given flowchart is structured.

Structured flow chart makes it easier the understand as they follow some structure.

Structure generally include sequence, decision and loop.

As given flow has a defined sequence i.e. it defines step to be followed one after another.

Also, it includes decision. Depending on the decision nex statement is executed.

For instance- if eof is true then programs stops else another sequence of statement is executed.