C1S115 Exercise 1 With Vb Code, Ipo, Pseudocode, Visio Flowchart And 4 Screenshots – Complete And A+ Guaranteed
Week 1 Activity—Pseudocode and Visual Basic
TCO 1—Given a simple business problem, design and desk-check a solution that is expressed in terms of pseudocode, flowchart, and/or input-process-output (IPO) diagrams.
Assignment
This activity will assist you in the understanding of how output should appear after statements are executed (results) and how to write proper pseudocode, as well as the relationship between pseudocode, flowcharts, and programming language code.
1. Show the result of each pseudocode program.
2. Also rewrite the pseudocode statements or flowchart using Assignment statements.
Rubric
When completed, compile the following documents neatly in order.
1) This instruction sheet first
2) Your answer sheet second
Point distribution for this activity:
Activity
Document Points possible Points received
Problem #1 6
Problem #2 6
Problem #3 8
Total Points 20
Example
The variable A starts with value 5.
Add 1 to A
Display the value of A on the screen.
Example Output
6
Example Pseudocode
Let A = 5
Let A = A + 1
Output A
Example flowchart (use MS Visio and paste flowchart here or submit in separate file)
Problem #1
The variable X starts with the value 0.
The variable Y starts with the value 5.
Add 1 to X.
Add 1 to Y.
Add X and Y, and store the result in Y.
Display the value in Y on the screen.
Output #1
Pseudocode #1
Wait.... Hire Me To Get 100% Original Help In . Watch The Video Below For More Information & How It Works!
STATUS
Flowchart (use MS Visio and paste flowchart here or submit in separate file)
Problem #2
The variable J starts with the value 10.
The variable K starts with the value 2.
The variable L starts with the value 4.
Store the value of J times K in J.
Store the value of K times L in L.
Add J and L, and store the result in K.
Display the value in K on the screen.
Output #2
Pseudocode #2
Flowchart (use MS Visio and paste flowchart here or submit in separate file)
Problem #3
The variable A starts with the value 1.
The variable B starts with the value 10.
The variable C starts with the value 100.
The variable X starts with the value 0.
Store the value of C times 3 in X.
Add the value of B times 6 to the value already in X.
Add the value of A times 5 to the value already in X.
Display the value in X on the screen.
Output #3
Pseudocode #3
Flowchart (use MS Visio and paste flowchart here or submit in separate file)