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

1. what is the output of the code corresponding to the following pseudocode? Dec

ID: 3535753 • Letter: 1

Question

1. what is the output of the code corresponding to the following pseudocode?

Declare M As Integer

Declare P As Integer

Set M = 2

Repeat

Set P = 1

While P < 4

Write M + “ and “ + P

Set P = P + 1

End While(P)

Set M = M + 1

Until M > 3

Answer

A.

2 and 3

3 and 1

B.

2 and 1

2 and 2

2 and 3

3 and 1

3 and 2

3 and 3

C.

1 and 1

2 and 2

3 and 3

D.

M and P

M and P

M and P

2. following steps are used to __________ two sequential files:

Open the existing files for Input

Open the new file for Output

Read the records, comparing those of the first file to the second

Write the records in order to the new file

Close all files

3. What is the industry standard for system modeling?

4. index number of the first element of an array, using the pseudocode of this textbook, is __________.

5. the function that returns the number of characters in a string is the __________ function.

6. If a two-dimensional array named Months stores the months of the year in the first column and the days of each month in the second column, which of the following represents the element that stores March 12, where March is the third month of the year?

Answer

a. months [2, 11]

b. [3, 11]

c. [3, 12]

d. [2, 12]

A.

2 and 3

3 and 1

B.

2 and 1

2 and 2

2 and 3

3 and 1

3 and 2

3 and 3

C.

1 and 1

2 and 2

3 and 3

D.

M and P

M and P

M and P

Explanation / Answer

1 - B


2 - Search and sort


3- Systems modeling or system modeling is the interdisciplinary study of the use of models to conceptualize and construct systems in business and IT development.[2]

A common type of systems modeling is function modeling, with specific techniques such as the Functional Flow Block Diagram and IDEF0. These models can be extended using functional decomposition, and can be linked to requirements models for further systems partition.

The Business Process Modeling Notation (BPMN), a graphical representation for specifying business processes in a workflow, can also be considered to be a systems modeling language.


In business and IT development the term "systems modeling" has multiple meaning. It can relate to:

the use of model to conceptualize and construct systems

the interdisciplinary study of the use of these models

the systems modeling, analysis, and design efforts

the systems modeling and simulation, such as system dynamics

any specific systems modeling language

As a field of study systems modeling has emerged with the development of system theory and systems sciences.

As a type of modeling systems modeling is based on systems thinking and the systems approach. In business and IT systems modeling contrasts other approaches such as:

agent based modeling

data modeling and

mathematical modeling


4 - 1

5 - strlen()

6 - C