Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 23

CIS 115 Course Career Path B

egins /cis115dotcom
FOR MORE CLASSES VISIT
www.cis115.com

CIS 115 Entire Course Devry


University All iLabs
CIS 115 Entire Course: Devry University: All iLabs and Ex
ercises

CIS 115 All Exercises Devry U


niversity (Devry)
CIS 115 All Exercises Devry University

CIS 115 All iLabs Devry Unive


rsity (Devry)
CIS 115 All iLabs Devry University (Devry)

CIS 115 Final Exam 1 (Devry)


1. (TCO 1) What does IPO of IPO Model stand for? (Point
s : 4)
2. (TCO 1) What is a data item with a name and a value t
hat remain the same during the execution of a program
? (Points : 4)
3. (TCO 1) What symbol in a flowchart would be used by
a developer to represent an input or output operation?
(Points : 4)
4. (TCO 1) Set is a process. What data type would you ex
pect the variable, name, to have? (Points : 4)

CIS 115 Final Exam 2 (Devry)


1. What is the first step in software development?
2. What are named locations in a computers memory h
olding information required by a program?
3. What symbol in a flowchart would be used by a devel
oper to represent the beginning or ending point?
4. ) Set name = BSCIS is a process. What data type wo
uld you expect the variable, name, to have?
5. (You are using dollar amounts in an algorithm. What
data type would you assign?

CIS 115 Final Exam 3 (Devry)


1. (TCO 1) When creating an IPO Model, program design
ers generally determine _____ last. (Points : 4)
2. (TCO 1) What is a data item with a name and a value t
hat remain the same during the execution of a program
? (Points : 4)
3. (TCO 1) What symbol in a flowchart would be used by
a developer to represent the beginning or ending point?
(Points : 4)
4. (TCO 1) Set is a process. What data type would you ex
pect the variable, name, to have? (Points : 4)

CIS 115 Final Exam 3 Sets of


Answers (Devry)
CIS 115 Final Exam 3 Sets of Answers (Devry)

CIS 115 Week 1 Exercise (Dev


ry)
Assignment:
This activity will assist you in the understanding of how
output should appear after statements are executed (re
sults) and how to write proper pseudocode.
1. Show the result of each pseudocode program.
2. Also rewrite the pseudocode statements using Assign
ment statements.
Rubric:
When completed compile the following documents toge
ther neatly in 1 & 2 order:
1) This instruction sheet first

CIS 115 Week 1 iLab 1 (Devr


y)
A. Lab #: CIS CIS 115-A1
B. Lab 1 of 1 :
Fireworks Stand Checkout
C. Lab Overview Scenario / Summary:
TCO #4

Given a simple business problem that requires one or


more decisions, create a solution algorithm that uses de
cisions with logical and relational expressions.
TCO #5

CIS 115 Week 2 Exercise (Dev


ry)
Given a simple business problem, design a solution algo
rithm that uses arithmetic expressions and built-in func
tions.
Assignment:
Your goal is to solve the following simple programming
exercise. You have been contracted by a local restaurant
to design an algorithm determining the total meal charg
es. The algorithm should ask the user for the total food
purchase and the tip percent. Then, the algorithm will c
alculate the amount of a tip, a 7% sales tax, and the tota
l meal charge (including tip). The food purchase, sales ta
x, tip amount, and total meal charge will need to be disp
layed to the customer.

CIS 115 Week 2 Lab Total Me


al Purchases (Devry)
Scenario/Summary
Your goal is to solve the following simple programming
exercise. You have been contracted by a local antique st
ore to design an algorithm determining the total purcha
ses and sales tax. According to the store owner, the use
r will need to see the subtotal, the sales tax amount, an
d the total purchase amount. A customer is purchasing
four items from the antique store. Design an algorithm
where the user will enter the price of each of the four it
ems. The algorithm will determine the subtotal, the sale
s tax, and the total purchase amount. Assume the sales
tax is 7%.

CIS 115 Week 3 Exercise (Dev


ry)
Week 3 Activity Calculate Overtime Pay TCO #4 Give
n a simple business problem that requires one or more
decisions, create a solution algorithm that uses decision
s with logical and relational expressions. TCO #9 Given
a program with logic errors that is intended as a solutio
n to a simple business problem, employ debugging diag
nostics to remove and correct the errors. Assignment: Y
ou will need to design an application that it will prompt
a user for their hourly pay rate, their hours worked

CIS 115 Week 3 Lab Decision


Calendar (Devry)
i L A B O V E R V I E WScenario/Summary
Your goal is to solve the following programming lab acti
vity. Write a program that prompts and accepts a numb
er between 1 and 12. After getting the input, display the
number with the appropriate month. (example: This is t
he 1st monthJanuary, This is the 2nd monthFebruar
y, This is the 12th monthDecember).
Be sure to THINK about the logic and design first (IPO c
hart and/or pseudocode), then code the Visual Logic co
mmand line processing.

CIS 115 Week 4 Exercise (Dev


ry)
TCO #4 Given a simple business problem that requires
one or more decisions, create a solution algorithm that
uses decisions with logical and relational expressions.
TCO #9 Given a program with logic errors that is inten
ded as a solution to a simple business problem, employ
debugging diagnostics to remove and correct the errors
.
Assignment: You will need to design an application that
will receive the weight of a parcel and calculate and dis
play the cost per kg and the delivery charge for that par
cel. Calculate the charges using the following data:
Parcel Weight (kg) Cost per kg ($)

CIS 115 Week 4 Lab Grade Ca


lendar (Devry)
You have been asked to design a program that will allow
a teacher to calculate the percentage and the final grad
e for students in a class. The program will prompt the te
acher to enter the students first and last name and the
number of points the student received. The program sh
all only accept scores between 0 and 1,000 points (inclu
ding 0 and 1,000), with 1,000 points being the maximum
number of points. If the input value is within the valid r
ange, the program will display a "good score" message;
otherwise, the program will display an error

CIS 115 Week 5 Exercise (Dev


ry)
Assignment (part A): Your goal is to solve the following s
imple programming exercise. Using a FOR loop, write an
algorithm that displays the squares of the numbers 1 to
10 to console output. Thought provoking question: Do y
ou need to accept input?
Assignment (part B): Using a pretest WHILE loop, write a
n algorithm that displays the squares of the numbers 1
to 10 to console output.
Assignment (part C): This is extra for those who desire a
challenge. Accomplish the same output as above, but us
e a posttest WHILE loop this time.

CIS 115 Week 5 Lab Firework


s Stand Checkout (Devry)
Your algorithm will keep track of a customers purchase
s at the local fireworks stand. Customers will not know
exactly how many items they will purchase, so using a f
or-loop on this lab is not allowed. Lets keep the rules si
mple.
Accept the dollar value of each item purchased from th
e user until the user is finished. When purchases are co
mplete, enter a sentinel value of -1 (indicating the user
has finished). If the item purchased is $50.00 or more, g
ive your customer a 10% discount on the item purchase
d. Display all of the purchases to the customer with the
original price and the discount price.

CIS 115 Week 6 Exercise (Dev


ry)
Assignment: Arrays are incredible fun! Today we are goi
ng to work on a program to keep track of our homewor
k scores for a math class. Write a program that accepts f
ive homework scores as input values and stores them in
to a table (which is another name for an array). Once th
e scores are in the array, we can process them again an
d again.

CIS 115 Week 6 Lab Firework


s Stand Checkout (Devry)
Your algorithm will keep track of a customers purchase
s at the local fireworks stand. Customers will not know
exactly how many items they will purchase, so using a f
or-loop on this lab is not allowed. Lets keep the rules si
mple.
Accept the dollar value of each item purchased from th
e user until the user is finished. When purchases are co
mplete, enter a sentinel value of -1 (Make certain you d
o not include the -1 sentinel value in your total). Keep tr
ack of the total dollar amount

CIS 115 Week 7 Exercise (Dev


ry)
Assignment: Your goal is to solve the following simple p
rogramming exercise. You have been asked by your acc
ounting department to design an algorithm determining
the annual profit for your company. The algorithm shou
ld ask the user for the projected monthly sales for 12 m
onths. Then, you need to determine the annual profit a
nd display it to the user. The annual profit is 21% of the
total sales.
Part A: Using Visual Logic, write the monthly sales amou
nts to a file, monthly_Sales.dat. (Hint: be sure to enter a
sentinel value for end of file processing later.)

CIS 115 Week 7 Lab Firework


s Stand Checkout (Devry)
In this lab, you are going to extend the Fireworks Check
out Stand application in Week 6. This week, we will be m
ore efficient by using files and modularizing the progra
m. This week, we will also load our array of valid zip cod
es from a text file. In addition, we will modify the existin
g code to create a modularized design.

CIS 115 Course Career Path B


egins /cis115dotcom
FOR MORE CLASSES VISIT
www.cis115.com

You might also like