SlideShare a Scribd company logo
DEVRY CIS 115 Final Exam 2
Check this A+ tutorial guideline at
http://www.assignmentcloud.com/cis-
115/cis-115-final-exam-2
For more classes visit
http://www.assignmentcloud.com
CIS 115 Final Exam 2
1. What is the first step in software development?
2. What are named locations in a computer’s memory holding information required by a
program?
3. What symbol in a flowchart would be used by a developer to represent the beginning or
ending point?
4. ) Set name = “BSCIS” is a process. What data type would you expect the variable, name, to
have?
5. (You are using dollar amounts in an algorithm. What data type would you assign?
6. What tool is used by developers to design logic using specific shapes/symbols?
7. When a program evaluates mathematical expression, which of the following operators
(or mathematical operations) takes precedence?
8. (Which one of the following is a valid assignment statement in a program?
9. (Evaluate (2 * 3) ^ 3.
10. (TCO 2) Review the partial pseudocode below. What is the correct math expression to
complete the algorithm and total sales for both regions?
Prompt “Enter total sales for region 1: “
Input region1
Prompt “Enter total sales for region 2: “
Input region2
Set _____
Display “total sales: “ + total (Points : 4)
11. (TCO 3 & 4) Review the pseudocode below. What will be displayed when this algorithm
executes?
Set
If ((x > = 10) AND (x < 20))="">
Display “the IF path executes”
Else
Display “the ELSE path executes”
EndIf (Points : 4)
12. (TCO 3 & 4) What value gets displayed for the variable X?
Set
Set
Set
If (B > 15) AND (() OR (C <= 15))="">
Set
Else
Set
EndIf
Display X (Points : 4)
13. (TCO 3 & 4) In the following pseudocode, what raise will an employee in Department 6
receive?
If department < 2="">
Set
Else
If department < 6="">
Set
Else
Set
EndIf
EndIf (Points : 4)
14. (TCO 3 & 4) Which of the selection structures determine whether the user enters a
number outside a range of 5 and 15? (Points : 4)
15. (TCO 3 & 4) What value gets displayed for the variable Z?
Set
Set
Set
If ((balance <> 800) OR (stateCode<> 6) OR (creditCode<> 7) then
Set
Else
Set
EndIf
Display Z (Points : 4)
1. (TCO 5) The statements executed within a loop are known collectively as the _____.
(Points : 4)
2. (TCO 5) Which of the following statements is false? (Points : 4)
3. (TCO 5) A DO loop is considered what type of loop? (Points : 4)
4. (TCO 5) What happens when the loop control variable is not changed? (Points : 4)
5. (TCO 5) How many times will the following loop be executed?
Set
DOWHILE num<=>
Display num
Set + 1
ENDO (Points : 4)
6. (TCO 7) What is another name for an array’s index? (Points : 4)
7. (TCO 7) Suppose you have an array named number,
and two of its elements are number(1) and number(4). You know that _____. (Points : 4)
8. (TCO 7) Which one of the following correctly declares a zero-based array of four
integers? (Points : 4)
9. (TCO 7) When processing the elements of an array, what control structure is used to
move through each element within the array? (Points : 4)
10. (TCO 7) A zero-based array named sales has been declared and loaded with the values
100, 1100, 3400, 5550, 3000, 22300, and 1200. What value will be stored in the array
element sales(1)? (Points : 4)
11. (TCO 6) A file contains _____. (Points : 4)
12. (TCO 6) What is automatically placed at the bottom of a file when the file is closed?
(Points : 4)
13. (TCO 8) Menu-driven programs need to give the user the option to _____. (Points : 4)
14. (TCO 9) What type of error occurs when a program will not execute because the rules
of the language have been violated? (Points : 4)
15. (TCO 2) The first module is usually considered to be called the _____ module. (Points : 4)
1. (TCO 10) A retail store is having a customer appreciation sale. Depending on the total
dollars purchased, the customer could receive a discount on his or her total purchases. You
are to develop pseudocode that will obtain the total dollars purchased from the user,
determine the discount percentage, and display the total amount due. When the purchases
are more than $100, the discount is 10%. When the purchases are $100 or less, the
discount is 5%. (Points : 10)
2. (TCO 10) A small business in your neighborhood would like an application developed
that determines the average dollar amount spent for every three purchases. The user will
enter three different purchase amounts. You need to display the average to your client.
Complete the pseudocode to design your logic. (Points : 10)
3. (TCO 9 & 10) There is a logic error in the following pseudocode. The loop needs to
execute four times. What statement(s) would you need to add or change to correct the
logic? Be sure to explain why you are adding or changing the statements.
Set
REPEAT
Set + 1
UNTIL total <>
EndWhile
Display total (Points : 10)
4. (TCO 4 & 10) Complete the pseudocode by rewriting the algorithm. The design is
determining the correct sales tax depending on the county identifying code. Counties with a
number less than 10 have a 6% sales tax. The 11–25 codes have a sales tax of 7%. Codes
above 25 have a sales tax of 8%. The code is entered by the user.
Begin
Declare Real salesTax
Declare _____ countyCode
_____ “Enter the county code: “
_____ countyCode
If _____ <= 10="">
Set
Else
If _____ AND _____ then
Set
Else
_____
EndIf
_____
Display “the sales tax is: “ + _____
End (Points : 10)
5. (TCO 5 & 10) Complete the pseudocode by rewriting the algorithm. The design is to
display a 60-second countdown.
Begin
Declare _____ count
Set
REPEAT
Display “countdown: “ + _____
Set - 1
UNTIL _____
EndDo
Display “LIFT OFF!”
End (Points : 10)
6. (TCO 4, 5 & 10) Complete the pseudocode by rewriting the algorithm. The colors red,
blue, and yellow are known as primary colors because they cannot be made by mixing
other colors. When you mix two primary colors, you get a secondary color. Mixing yellow
and blue gets you green. Mixing red and blue gets you purple. The algorithm allows the
user to enter two primary colors and then displays the resulting secondary color. The
colors entered by the user will be validated to ensure they entered a primary color.
Begin
Declare String color1
Declare String color2
Declare String control1
Declare String control2
_____ “Enter first primary color: “
Input _____
Prompt “Enter the second primary color: “
Input _____
Set control1 = “n”
DOWHILE control1 = “n”
If (color1 <> “yellow”) _____ (color1 <> “red”) _____ (color1 <> “blue”) then
Prompt “first primary color is invalid”
Input _____
Else
Set control1 = “y”
ENDO
Set control2 = “n”
DOWHILE control2 = “n”
If (color2 <> “yellow”) _____ (color2 <> “red”) _____ (color2 <> “blue”) then
Prompt “second primary color is invalid”
Input color2
Else
Set control2 = “y”
ENDO
If (color1 = “red”) AND (_____) then
Display “secondary color is: purple”
EndIf
If (color1 = “yellow”) AND (_____) then
Display “secondary color is: green”
EndIf
End (Points : 10)
7. (TCO 1, 2, 3, & 4) Describe the difference between a flowchart and pseudocode and
explain whether one is more important to develop than the other. (Points : 10)
8. (TCO 1, 2, 3, 4, & 5) Describe two of the three control structure
Else
Set control1 = “y”
ENDO
Set control2 = “n”
DOWHILE control2 = “n”
If (color2 <> “yellow”) _____ (color2 <> “red”) _____ (color2 <> “blue”) then
Prompt “second primary color is invalid”
Input color2
Else
Set control2 = “y”
ENDO
If (color1 = “red”) AND (_____) then
Display “secondary color is: purple”
EndIf
If (color1 = “yellow”) AND (_____) then
Display “secondary color is: green”
EndIf
End (Points : 10)
7. (TCO 1, 2, 3, & 4) Describe the difference between a flowchart and pseudocode and
explain whether one is more important to develop than the other. (Points : 10)
8. (TCO 1, 2, 3, 4, & 5) Describe two of the three control structure

More Related Content

What's hot

CIS 115 Exceptional Education - snaptutorial.com
CIS 115   Exceptional Education - snaptutorial.comCIS 115   Exceptional Education - snaptutorial.com
CIS 115 Exceptional Education - snaptutorial.com
DavisMurphyB33
 
CIS 115 Achievement Education--cis115.com
CIS 115 Achievement Education--cis115.comCIS 115 Achievement Education--cis115.com
CIS 115 Achievement Education--cis115.com
agathachristie170
 
CIS 115 Education for Service--cis115.com
CIS 115 Education for Service--cis115.com  CIS 115 Education for Service--cis115.com
CIS 115 Education for Service--cis115.com
williamwordsworth10
 
CIS 115 Redefined Education--cis115.com
CIS 115 Redefined Education--cis115.comCIS 115 Redefined Education--cis115.com
CIS 115 Redefined Education--cis115.com
agathachristie208
 
CIS 115 Effective Communication - tutorialrank.com
CIS 115  Effective Communication - tutorialrank.comCIS 115  Effective Communication - tutorialrank.com
CIS 115 Effective Communication - tutorialrank.com
Bartholomew18
 
Devry cis 115 final exam 1
Devry cis 115 final exam 1Devry cis 115 final exam 1
Devry cis 115 final exam 1
shamek1236
 
Devry cis 115 final exam 1
Devry cis 115 final exam 1Devry cis 115 final exam 1
Devry cis 115 final exam 1
eyavagal
 
CIS 115 Become Exceptional--cis115.com
CIS 115 Become Exceptional--cis115.comCIS 115 Become Exceptional--cis115.com
CIS 115 Become Exceptional--cis115.com
claric130
 
Mid term sem 2 1415 sol
Mid term sem 2 1415 solMid term sem 2 1415 sol
Mid term sem 2 1415 sol
IIUM
 
BASICS OF COMPUTER PROGRAMMING-TAKE HOME ASSIGNMENT 2018
BASICS OF COMPUTER PROGRAMMING-TAKE HOME ASSIGNMENT 2018BASICS OF COMPUTER PROGRAMMING-TAKE HOME ASSIGNMENT 2018
BASICS OF COMPUTER PROGRAMMING-TAKE HOME ASSIGNMENT 2018
musadoto
 
OXUS20 JAVA Programming Questions and Answers PART I
OXUS20 JAVA Programming Questions and Answers PART IOXUS20 JAVA Programming Questions and Answers PART I
OXUS20 JAVA Programming Questions and Answers PART I
Abdul Rahman Sherzad
 
11th information practices paper CBSE INDIA 2012 2013
11th information practices paper CBSE INDIA 2012 201311th information practices paper CBSE INDIA 2012 2013
11th information practices paper CBSE INDIA 2012 2013
Harish Gyanani
 
programming for Calculator in java
programming for Calculator in javaprogramming for Calculator in java
programming for Calculator in java
One97 Communications Limited
 
Java calculator
Java calculatorJava calculator
Java calculator
Sarah McNellis
 
Python programming workshop session 2
Python programming workshop session 2Python programming workshop session 2
Python programming workshop session 2
Abdul Haseeb
 

What's hot (16)

CIS 115 Exceptional Education - snaptutorial.com
CIS 115   Exceptional Education - snaptutorial.comCIS 115   Exceptional Education - snaptutorial.com
CIS 115 Exceptional Education - snaptutorial.com
 
CIS 115 Achievement Education--cis115.com
CIS 115 Achievement Education--cis115.comCIS 115 Achievement Education--cis115.com
CIS 115 Achievement Education--cis115.com
 
CIS 115 Education for Service--cis115.com
CIS 115 Education for Service--cis115.com  CIS 115 Education for Service--cis115.com
CIS 115 Education for Service--cis115.com
 
CIS 115 Redefined Education--cis115.com
CIS 115 Redefined Education--cis115.comCIS 115 Redefined Education--cis115.com
CIS 115 Redefined Education--cis115.com
 
CIS 115 Effective Communication - tutorialrank.com
CIS 115  Effective Communication - tutorialrank.comCIS 115  Effective Communication - tutorialrank.com
CIS 115 Effective Communication - tutorialrank.com
 
Devry cis 115 final exam 1
Devry cis 115 final exam 1Devry cis 115 final exam 1
Devry cis 115 final exam 1
 
Devry cis 115 final exam 1
Devry cis 115 final exam 1Devry cis 115 final exam 1
Devry cis 115 final exam 1
 
CIS 115 Become Exceptional--cis115.com
CIS 115 Become Exceptional--cis115.comCIS 115 Become Exceptional--cis115.com
CIS 115 Become Exceptional--cis115.com
 
Mid term sem 2 1415 sol
Mid term sem 2 1415 solMid term sem 2 1415 sol
Mid term sem 2 1415 sol
 
BASICS OF COMPUTER PROGRAMMING-TAKE HOME ASSIGNMENT 2018
BASICS OF COMPUTER PROGRAMMING-TAKE HOME ASSIGNMENT 2018BASICS OF COMPUTER PROGRAMMING-TAKE HOME ASSIGNMENT 2018
BASICS OF COMPUTER PROGRAMMING-TAKE HOME ASSIGNMENT 2018
 
Qno 1 (f)
Qno 1 (f)Qno 1 (f)
Qno 1 (f)
 
OXUS20 JAVA Programming Questions and Answers PART I
OXUS20 JAVA Programming Questions and Answers PART IOXUS20 JAVA Programming Questions and Answers PART I
OXUS20 JAVA Programming Questions and Answers PART I
 
11th information practices paper CBSE INDIA 2012 2013
11th information practices paper CBSE INDIA 2012 201311th information practices paper CBSE INDIA 2012 2013
11th information practices paper CBSE INDIA 2012 2013
 
programming for Calculator in java
programming for Calculator in javaprogramming for Calculator in java
programming for Calculator in java
 
Java calculator
Java calculatorJava calculator
Java calculator
 
Python programming workshop session 2
Python programming workshop session 2Python programming workshop session 2
Python programming workshop session 2
 

Similar to Devry cis 115 final exam 2

Devry cis 115 final exam 1
Devry cis 115 final exam 1Devry cis 115 final exam 1
Devry cis 115 final exam 1
eyavagal
 
CIS 115 Education in iCounseling ---cis115.com
CIS 115 Education in  iCounseling ---cis115.comCIS 115 Education in  iCounseling ---cis115.com
CIS 115 Education in iCounseling ---cis115.com
claric59
 
Devry cis 115 final exam 3
Devry cis 115 final exam 3Devry cis 115 final exam 3
Devry cis 115 final exam 3
shamek1236
 
Devry cis 115 final exam 3
Devry cis 115 final exam 3Devry cis 115 final exam 3
Devry cis 115 final exam 3
eyavagal
 
Bis 345-final-exam-guide-set-1-new
Bis 345-final-exam-guide-set-1-newBis 345-final-exam-guide-set-1-new
Bis 345-final-exam-guide-set-1-new
assignmentcloud85
 
Cis 115 Education Redefined-snaptutorial.com
Cis 115 Education Redefined-snaptutorial.comCis 115 Education Redefined-snaptutorial.com
Cis 115 Education Redefined-snaptutorial.com
robertledwes38
 
Bis 311 final examination answers
Bis 311 final examination answersBis 311 final examination answers
Bis 311 final examination answers
RandalHoffman
 
Cis 336 final exam 1
Cis 336 final exam 1Cis 336 final exam 1
Cis 336 final exam 1
prasaaanna2
 
Week 2 iLab TCO 2 — Given a simple problem, design a solutio.docx
Week 2 iLab TCO 2 — Given a simple problem, design a solutio.docxWeek 2 iLab TCO 2 — Given a simple problem, design a solutio.docx
Week 2 iLab TCO 2 — Given a simple problem, design a solutio.docx
melbruce90096
 
Cis 336 final exam 2
Cis 336 final exam 2Cis 336 final exam 2
Cis 336 final exam 2
prasaaanna2
 
Ecet 330 final exam new 2016
Ecet 330 final exam new 2016Ecet 330 final exam new 2016
Ecet 330 final exam new 2016
sergejsvolkovs10
 

Similar to Devry cis 115 final exam 2 (11)

Devry cis 115 final exam 1
Devry cis 115 final exam 1Devry cis 115 final exam 1
Devry cis 115 final exam 1
 
CIS 115 Education in iCounseling ---cis115.com
CIS 115 Education in  iCounseling ---cis115.comCIS 115 Education in  iCounseling ---cis115.com
CIS 115 Education in iCounseling ---cis115.com
 
Devry cis 115 final exam 3
Devry cis 115 final exam 3Devry cis 115 final exam 3
Devry cis 115 final exam 3
 
Devry cis 115 final exam 3
Devry cis 115 final exam 3Devry cis 115 final exam 3
Devry cis 115 final exam 3
 
Bis 345-final-exam-guide-set-1-new
Bis 345-final-exam-guide-set-1-newBis 345-final-exam-guide-set-1-new
Bis 345-final-exam-guide-set-1-new
 
Cis 115 Education Redefined-snaptutorial.com
Cis 115 Education Redefined-snaptutorial.comCis 115 Education Redefined-snaptutorial.com
Cis 115 Education Redefined-snaptutorial.com
 
Bis 311 final examination answers
Bis 311 final examination answersBis 311 final examination answers
Bis 311 final examination answers
 
Cis 336 final exam 1
Cis 336 final exam 1Cis 336 final exam 1
Cis 336 final exam 1
 
Week 2 iLab TCO 2 — Given a simple problem, design a solutio.docx
Week 2 iLab TCO 2 — Given a simple problem, design a solutio.docxWeek 2 iLab TCO 2 — Given a simple problem, design a solutio.docx
Week 2 iLab TCO 2 — Given a simple problem, design a solutio.docx
 
Cis 336 final exam 2
Cis 336 final exam 2Cis 336 final exam 2
Cis 336 final exam 2
 
Ecet 330 final exam new 2016
Ecet 330 final exam new 2016Ecet 330 final exam new 2016
Ecet 330 final exam new 2016
 

More from shyaminfo12

Argosy b6512-module-5-assignment-1-required-assignment-2-emerging-economies-a...
Argosy b6512-module-5-assignment-1-required-assignment-2-emerging-economies-a...Argosy b6512-module-5-assignment-1-required-assignment-2-emerging-economies-a...
Argosy b6512-module-5-assignment-1-required-assignment-2-emerging-economies-a...
shyaminfo12
 
Argosy b6512-module-4-assignment-2-global-staffing-new
Argosy b6512-module-4-assignment-2-global-staffing-newArgosy b6512-module-4-assignment-2-global-staffing-new
Argosy b6512-module-4-assignment-2-global-staffing-new
shyaminfo12
 
Argosy b6512-module-3-assignment-2-required-assignment-1-strategic-alliances-...
Argosy b6512-module-3-assignment-2-required-assignment-1-strategic-alliances-...Argosy b6512-module-3-assignment-2-required-assignment-1-strategic-alliances-...
Argosy b6512-module-3-assignment-2-required-assignment-1-strategic-alliances-...
shyaminfo12
 
Argosy b6032-module-5-assignment-2-required-assignment-2-career-development-p...
Argosy b6032-module-5-assignment-2-required-assignment-2-career-development-p...Argosy b6032-module-5-assignment-2-required-assignment-2-career-development-p...
Argosy b6032-module-5-assignment-2-required-assignment-2-career-development-p...
shyaminfo12
 
Argosy b6032-module-3-assignment-2-required-assignment-1-ethical-and-legal-is...
Argosy b6032-module-3-assignment-2-required-assignment-1-ethical-and-legal-is...Argosy b6032-module-3-assignment-2-required-assignment-1-ethical-and-legal-is...
Argosy b6032-module-3-assignment-2-required-assignment-1-ethical-and-legal-is...
shyaminfo12
 
Argosy b6032-module-1-assignment-3-case-study-merger-and-acquisition-new
Argosy b6032-module-1-assignment-3-case-study-merger-and-acquisition-newArgosy b6032-module-1-assignment-3-case-study-merger-and-acquisition-new
Argosy b6032-module-1-assignment-3-case-study-merger-and-acquisition-new
shyaminfo12
 
Argosy b6028-module-5-assignment-2-lasa-2-presentation-of-strategy-audit-find...
Argosy b6028-module-5-assignment-2-lasa-2-presentation-of-strategy-audit-find...Argosy b6028-module-5-assignment-2-lasa-2-presentation-of-strategy-audit-find...
Argosy b6028-module-5-assignment-2-lasa-2-presentation-of-strategy-audit-find...
shyaminfo12
 
Argosy b6028-module-4-assignment-2-internal-environmental-scan-organizational...
Argosy b6028-module-4-assignment-2-internal-environmental-scan-organizational...Argosy b6028-module-4-assignment-2-internal-environmental-scan-organizational...
Argosy b6028-module-4-assignment-2-internal-environmental-scan-organizational...
shyaminfo12
 
Argosy b6028-module-3-assignment-2-lasa-1-preliminary-strategy-audit-merriwet...
Argosy b6028-module-3-assignment-2-lasa-1-preliminary-strategy-audit-merriwet...Argosy b6028-module-3-assignment-2-lasa-1-preliminary-strategy-audit-merriwet...
Argosy b6028-module-3-assignment-2-lasa-1-preliminary-strategy-audit-merriwet...
shyaminfo12
 
Argosy b6028-module-1-assignment-3-market-position-analysis-new
Argosy b6028-module-1-assignment-3-market-position-analysis-newArgosy b6028-module-1-assignment-3-market-position-analysis-new
Argosy b6028-module-1-assignment-3-market-position-analysis-new
shyaminfo12
 
Argosy b6028-module-2-assignment-2-external-environmental-scan-target-new
Argosy b6028-module-2-assignment-2-external-environmental-scan-target-newArgosy b6028-module-2-assignment-2-external-environmental-scan-target-new
Argosy b6028-module-2-assignment-2-external-environmental-scan-target-new
shyaminfo12
 
Devry mgmt 591 final exam guide set 2 new
Devry mgmt 591 final exam guide set 2 newDevry mgmt 591 final exam guide set 2 new
Devry mgmt 591 final exam guide set 2 new
shyaminfo12
 
Uop psy 428 week 5 individual review of chapters 1 16
Uop psy 428 week 5 individual review of chapters 1 16Uop psy 428 week 5 individual review of chapters 1 16
Uop psy 428 week 5 individual review of chapters 1 16
shyaminfo12
 
Devry cis 115 week 4 lab grade calendar
Devry cis 115 week 4 lab grade calendarDevry cis 115 week 4 lab grade calendar
Devry cis 115 week 4 lab grade calendar
shyaminfo12
 

More from shyaminfo12 (14)

Argosy b6512-module-5-assignment-1-required-assignment-2-emerging-economies-a...
Argosy b6512-module-5-assignment-1-required-assignment-2-emerging-economies-a...Argosy b6512-module-5-assignment-1-required-assignment-2-emerging-economies-a...
Argosy b6512-module-5-assignment-1-required-assignment-2-emerging-economies-a...
 
Argosy b6512-module-4-assignment-2-global-staffing-new
Argosy b6512-module-4-assignment-2-global-staffing-newArgosy b6512-module-4-assignment-2-global-staffing-new
Argosy b6512-module-4-assignment-2-global-staffing-new
 
Argosy b6512-module-3-assignment-2-required-assignment-1-strategic-alliances-...
Argosy b6512-module-3-assignment-2-required-assignment-1-strategic-alliances-...Argosy b6512-module-3-assignment-2-required-assignment-1-strategic-alliances-...
Argosy b6512-module-3-assignment-2-required-assignment-1-strategic-alliances-...
 
Argosy b6032-module-5-assignment-2-required-assignment-2-career-development-p...
Argosy b6032-module-5-assignment-2-required-assignment-2-career-development-p...Argosy b6032-module-5-assignment-2-required-assignment-2-career-development-p...
Argosy b6032-module-5-assignment-2-required-assignment-2-career-development-p...
 
Argosy b6032-module-3-assignment-2-required-assignment-1-ethical-and-legal-is...
Argosy b6032-module-3-assignment-2-required-assignment-1-ethical-and-legal-is...Argosy b6032-module-3-assignment-2-required-assignment-1-ethical-and-legal-is...
Argosy b6032-module-3-assignment-2-required-assignment-1-ethical-and-legal-is...
 
Argosy b6032-module-1-assignment-3-case-study-merger-and-acquisition-new
Argosy b6032-module-1-assignment-3-case-study-merger-and-acquisition-newArgosy b6032-module-1-assignment-3-case-study-merger-and-acquisition-new
Argosy b6032-module-1-assignment-3-case-study-merger-and-acquisition-new
 
Argosy b6028-module-5-assignment-2-lasa-2-presentation-of-strategy-audit-find...
Argosy b6028-module-5-assignment-2-lasa-2-presentation-of-strategy-audit-find...Argosy b6028-module-5-assignment-2-lasa-2-presentation-of-strategy-audit-find...
Argosy b6028-module-5-assignment-2-lasa-2-presentation-of-strategy-audit-find...
 
Argosy b6028-module-4-assignment-2-internal-environmental-scan-organizational...
Argosy b6028-module-4-assignment-2-internal-environmental-scan-organizational...Argosy b6028-module-4-assignment-2-internal-environmental-scan-organizational...
Argosy b6028-module-4-assignment-2-internal-environmental-scan-organizational...
 
Argosy b6028-module-3-assignment-2-lasa-1-preliminary-strategy-audit-merriwet...
Argosy b6028-module-3-assignment-2-lasa-1-preliminary-strategy-audit-merriwet...Argosy b6028-module-3-assignment-2-lasa-1-preliminary-strategy-audit-merriwet...
Argosy b6028-module-3-assignment-2-lasa-1-preliminary-strategy-audit-merriwet...
 
Argosy b6028-module-1-assignment-3-market-position-analysis-new
Argosy b6028-module-1-assignment-3-market-position-analysis-newArgosy b6028-module-1-assignment-3-market-position-analysis-new
Argosy b6028-module-1-assignment-3-market-position-analysis-new
 
Argosy b6028-module-2-assignment-2-external-environmental-scan-target-new
Argosy b6028-module-2-assignment-2-external-environmental-scan-target-newArgosy b6028-module-2-assignment-2-external-environmental-scan-target-new
Argosy b6028-module-2-assignment-2-external-environmental-scan-target-new
 
Devry mgmt 591 final exam guide set 2 new
Devry mgmt 591 final exam guide set 2 newDevry mgmt 591 final exam guide set 2 new
Devry mgmt 591 final exam guide set 2 new
 
Uop psy 428 week 5 individual review of chapters 1 16
Uop psy 428 week 5 individual review of chapters 1 16Uop psy 428 week 5 individual review of chapters 1 16
Uop psy 428 week 5 individual review of chapters 1 16
 
Devry cis 115 week 4 lab grade calendar
Devry cis 115 week 4 lab grade calendarDevry cis 115 week 4 lab grade calendar
Devry cis 115 week 4 lab grade calendar
 

Recently uploaded

Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama UniversityNatural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Akanksha trivedi rama nursing college kanpur.
 
MASS MEDIA STUDIES-835-CLASS XI Resource Material.pdf
MASS MEDIA STUDIES-835-CLASS XI Resource Material.pdfMASS MEDIA STUDIES-835-CLASS XI Resource Material.pdf
MASS MEDIA STUDIES-835-CLASS XI Resource Material.pdf
goswamiyash170123
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
MysoreMuleSoftMeetup
 
The Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptxThe Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptx
DhatriParmar
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
SACHIN R KONDAGURI
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
camakaiclarkmusic
 
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th SemesterGuidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Atul Kumar Singh
 
Best Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDABest Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDA
deeptiverma2406
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 
Advantages and Disadvantages of CMS from an SEO Perspective
Advantages and Disadvantages of CMS from an SEO PerspectiveAdvantages and Disadvantages of CMS from an SEO Perspective
Advantages and Disadvantages of CMS from an SEO Perspective
Krisztián Száraz
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
David Douglas School District
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
DeeptiGupta154
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
Ashokrao Mane college of Pharmacy Peth-Vadgaon
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
Sandy Millin
 
The Diamond Necklace by Guy De Maupassant.pptx
The Diamond Necklace by Guy De Maupassant.pptxThe Diamond Necklace by Guy De Maupassant.pptx
The Diamond Necklace by Guy De Maupassant.pptx
DhatriParmar
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
Pavel ( NSTU)
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
TechSoup
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
Normal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of LabourNormal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of Labour
Wasim Ak
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
Peter Windle
 

Recently uploaded (20)

Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama UniversityNatural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
 
MASS MEDIA STUDIES-835-CLASS XI Resource Material.pdf
MASS MEDIA STUDIES-835-CLASS XI Resource Material.pdfMASS MEDIA STUDIES-835-CLASS XI Resource Material.pdf
MASS MEDIA STUDIES-835-CLASS XI Resource Material.pdf
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
 
The Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptxThe Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptx
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
 
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th SemesterGuidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th Semester
 
Best Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDABest Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDA
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 
Advantages and Disadvantages of CMS from an SEO Perspective
Advantages and Disadvantages of CMS from an SEO PerspectiveAdvantages and Disadvantages of CMS from an SEO Perspective
Advantages and Disadvantages of CMS from an SEO Perspective
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
 
The Diamond Necklace by Guy De Maupassant.pptx
The Diamond Necklace by Guy De Maupassant.pptxThe Diamond Necklace by Guy De Maupassant.pptx
The Diamond Necklace by Guy De Maupassant.pptx
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
Normal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of LabourNormal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of Labour
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
 

Devry cis 115 final exam 2

  • 1. DEVRY CIS 115 Final Exam 2 Check this A+ tutorial guideline at http://www.assignmentcloud.com/cis- 115/cis-115-final-exam-2 For more classes visit http://www.assignmentcloud.com CIS 115 Final Exam 2 1. What is the first step in software development? 2. What are named locations in a computer’s memory holding information required by a program? 3. What symbol in a flowchart would be used by a developer to represent the beginning or ending point? 4. ) Set name = “BSCIS” is a process. What data type would you expect the variable, name, to have? 5. (You are using dollar amounts in an algorithm. What data type would you assign? 6. What tool is used by developers to design logic using specific shapes/symbols? 7. When a program evaluates mathematical expression, which of the following operators (or mathematical operations) takes precedence? 8. (Which one of the following is a valid assignment statement in a program? 9. (Evaluate (2 * 3) ^ 3. 10. (TCO 2) Review the partial pseudocode below. What is the correct math expression to complete the algorithm and total sales for both regions? Prompt “Enter total sales for region 1: “ Input region1 Prompt “Enter total sales for region 2: “ Input region2 Set _____ Display “total sales: “ + total (Points : 4) 11. (TCO 3 & 4) Review the pseudocode below. What will be displayed when this algorithm executes?
  • 2. Set If ((x > = 10) AND (x < 20))=""> Display “the IF path executes” Else Display “the ELSE path executes” EndIf (Points : 4) 12. (TCO 3 & 4) What value gets displayed for the variable X? Set Set Set If (B > 15) AND (() OR (C <= 15))=""> Set Else Set EndIf Display X (Points : 4) 13. (TCO 3 & 4) In the following pseudocode, what raise will an employee in Department 6 receive? If department < 2=""> Set Else If department < 6=""> Set Else Set EndIf EndIf (Points : 4) 14. (TCO 3 & 4) Which of the selection structures determine whether the user enters a number outside a range of 5 and 15? (Points : 4) 15. (TCO 3 & 4) What value gets displayed for the variable Z? Set Set Set If ((balance <> 800) OR (stateCode<> 6) OR (creditCode<> 7) then Set Else Set EndIf Display Z (Points : 4) 1. (TCO 5) The statements executed within a loop are known collectively as the _____. (Points : 4) 2. (TCO 5) Which of the following statements is false? (Points : 4) 3. (TCO 5) A DO loop is considered what type of loop? (Points : 4) 4. (TCO 5) What happens when the loop control variable is not changed? (Points : 4) 5. (TCO 5) How many times will the following loop be executed? Set
  • 3. DOWHILE num<=> Display num Set + 1 ENDO (Points : 4) 6. (TCO 7) What is another name for an array’s index? (Points : 4) 7. (TCO 7) Suppose you have an array named number, and two of its elements are number(1) and number(4). You know that _____. (Points : 4) 8. (TCO 7) Which one of the following correctly declares a zero-based array of four integers? (Points : 4) 9. (TCO 7) When processing the elements of an array, what control structure is used to move through each element within the array? (Points : 4) 10. (TCO 7) A zero-based array named sales has been declared and loaded with the values 100, 1100, 3400, 5550, 3000, 22300, and 1200. What value will be stored in the array element sales(1)? (Points : 4) 11. (TCO 6) A file contains _____. (Points : 4) 12. (TCO 6) What is automatically placed at the bottom of a file when the file is closed? (Points : 4) 13. (TCO 8) Menu-driven programs need to give the user the option to _____. (Points : 4) 14. (TCO 9) What type of error occurs when a program will not execute because the rules of the language have been violated? (Points : 4) 15. (TCO 2) The first module is usually considered to be called the _____ module. (Points : 4) 1. (TCO 10) A retail store is having a customer appreciation sale. Depending on the total dollars purchased, the customer could receive a discount on his or her total purchases. You are to develop pseudocode that will obtain the total dollars purchased from the user, determine the discount percentage, and display the total amount due. When the purchases are more than $100, the discount is 10%. When the purchases are $100 or less, the discount is 5%. (Points : 10) 2. (TCO 10) A small business in your neighborhood would like an application developed that determines the average dollar amount spent for every three purchases. The user will enter three different purchase amounts. You need to display the average to your client. Complete the pseudocode to design your logic. (Points : 10) 3. (TCO 9 & 10) There is a logic error in the following pseudocode. The loop needs to execute four times. What statement(s) would you need to add or change to correct the logic? Be sure to explain why you are adding or changing the statements. Set REPEAT Set + 1 UNTIL total <> EndWhile Display total (Points : 10) 4. (TCO 4 & 10) Complete the pseudocode by rewriting the algorithm. The design is determining the correct sales tax depending on the county identifying code. Counties with a number less than 10 have a 6% sales tax. The 11–25 codes have a sales tax of 7%. Codes above 25 have a sales tax of 8%. The code is entered by the user. Begin Declare Real salesTax
  • 4. Declare _____ countyCode _____ “Enter the county code: “ _____ countyCode If _____ <= 10=""> Set Else If _____ AND _____ then Set Else _____ EndIf _____ Display “the sales tax is: “ + _____ End (Points : 10) 5. (TCO 5 & 10) Complete the pseudocode by rewriting the algorithm. The design is to display a 60-second countdown. Begin Declare _____ count Set REPEAT Display “countdown: “ + _____ Set - 1 UNTIL _____ EndDo Display “LIFT OFF!” End (Points : 10) 6. (TCO 4, 5 & 10) Complete the pseudocode by rewriting the algorithm. The colors red, blue, and yellow are known as primary colors because they cannot be made by mixing other colors. When you mix two primary colors, you get a secondary color. Mixing yellow and blue gets you green. Mixing red and blue gets you purple. The algorithm allows the user to enter two primary colors and then displays the resulting secondary color. The colors entered by the user will be validated to ensure they entered a primary color. Begin Declare String color1 Declare String color2 Declare String control1 Declare String control2 _____ “Enter first primary color: “ Input _____ Prompt “Enter the second primary color: “ Input _____ Set control1 = “n” DOWHILE control1 = “n” If (color1 <> “yellow”) _____ (color1 <> “red”) _____ (color1 <> “blue”) then Prompt “first primary color is invalid” Input _____
  • 5. Else Set control1 = “y” ENDO Set control2 = “n” DOWHILE control2 = “n” If (color2 <> “yellow”) _____ (color2 <> “red”) _____ (color2 <> “blue”) then Prompt “second primary color is invalid” Input color2 Else Set control2 = “y” ENDO If (color1 = “red”) AND (_____) then Display “secondary color is: purple” EndIf If (color1 = “yellow”) AND (_____) then Display “secondary color is: green” EndIf End (Points : 10) 7. (TCO 1, 2, 3, & 4) Describe the difference between a flowchart and pseudocode and explain whether one is more important to develop than the other. (Points : 10) 8. (TCO 1, 2, 3, 4, & 5) Describe two of the three control structure
  • 6. Else Set control1 = “y” ENDO Set control2 = “n” DOWHILE control2 = “n” If (color2 <> “yellow”) _____ (color2 <> “red”) _____ (color2 <> “blue”) then Prompt “second primary color is invalid” Input color2 Else Set control2 = “y” ENDO If (color1 = “red”) AND (_____) then Display “secondary color is: purple” EndIf If (color1 = “yellow”) AND (_____) then Display “secondary color is: green” EndIf End (Points : 10) 7. (TCO 1, 2, 3, & 4) Describe the difference between a flowchart and pseudocode and explain whether one is more important to develop than the other. (Points : 10) 8. (TCO 1, 2, 3, 4, & 5) Describe two of the three control structure