DEVRY CIS 115 F INAL E XAM 3 Check this A+ tutorial guideline at For more classes visit

Slides:



Advertisements
Similar presentations
CHAPTER 5: Repetition Control Structure. Objectives  To develop algorithms that use DOWHILE and REPEAT.. UNTIL structures  Introduce a pseudocode for.
Advertisements

Switch structure Switch structure selects one from several alternatives depending on the value of the controlling expression. The controlling expression.
Control Structures Week Introduction -Representation of the theory and principles of structured programming. Demonstration of for, while,do…whil.
CMSC 1041 Algorithms III Problem Solving and Pseudocode.
Lecture 4: Calculating by Iterating. The while Repetition Statement Repetition structure Programmer specifies an action to be repeated while some condition.
CIS 115 All Exercises Devry University (Devry) For more course tutorials visit CIS 115 All Exercises Devry University.
CIS 115 AID Peer Educator/cis115aid.com FOR MORE CLASSES VISIT
CIS 115 Slingshot Academy / Tutorialrank.com Tutorialrank.com For More Tutorials
CIS 115 All Exercises Devry University (Devry) FOR MORE CLASSES VISIT CIS 115 All Exercises Devry University.
CIS 115 All Exercises Devry University (Devry) FOR MORE CLASSES VISIT CIS 115 All Exercises Devry University.
CIS 115 ALL EXERCISES DEVRY UNIVERSITY (DEVRY)  CIS 115 All Exercises Devry University CIS 115 ALL ILABS DEVRY UNIVERSITY (DEVRY)  CIS 115 All iLabs.
CIS 115 AID Teaching Effectively/cis115aid.com FOR MORE CLASSES VISIT
DEVRY CIS 115 All Exercises Week 1 to Week 7 Check this A+ tutorial guideline at
DEVRY CIS 115 Final Exam 1 Check this A+ tutorial guideline at For more classes visit
DEVRY CIS 115 F INAL E XAM 2 Check this A+ tutorial guideline at For more classes visit
DEVRY CIS 115 F INAL E XAM 3 S ETS OF A NSWERS Check this A+ tutorial guideline at
DEVRY CIS 321 iLab 1 Check this A+ tutorial guideline at For more classes visit
DEVRY CIS 321 iLab 2 Check this A+ tutorial guideline at For more classes visit
DEVRY CIS 321 iLab 2 Check this A+ tutorial guideline at For more classes visit
DEVRY CIS 115 Week 7 Lab Fireworks Stand Checkout Check this A+ tutorial guideline at
DEVRY CIS 321 iLab 7 Check this A+ tutorial guideline at For more classes visit
DEVRY CIS 407 iLab 2 of 7 User Input Web Pages Check this A+ tutorial guideline at input-web-pages.
DEVRY BSOP 429 F INAL E XAM Check this A+ tutorial guideline at For more classes visit
DEVRY ACCT 550 E NTIRE C OURSE W ITH M IDTERM A ND F INAL E XAM Check this A+ tutorial guideline at
DEVRY MKTG 320 W EEK 8 F INAL E XAM Check this A+ tutorial guideline at For more classes.
DEVRY PROJ 410 W EEK 8 F INAL E XAM Check this A+ tutorial guideline at For more classes.
CIS 115 Slingshot Academy / cis115.com
Introduction to Computer Programming
ALGORITHMS AND FLOWCHARTS
REPETITION CONTROL STRUCTURE
2008/09/22: Lecture 6 CMSC 104, Section 0101 John Y. Park
Algorithms, Part 2 of 3 Topics Problem Solving Examples Pseudocode
The Selection Structure
Chapter 5: Control Structure
Chapter Topics 2.1 Designing a Program 2.2 Output, Input, and Variables 2.3 Variable Assignment and Calculations 2.4 Variable Declarations and Data Types.
Chapter 5: Loops and Files.
Algorithms, Part 2 of 3 Topics Problem Solving Examples Pseudocode
CIS 115 Possible Is Everything/snaptutorial.com
CIS115 Education for Service-- snaptutorial.com
CIS 115Competitive Success/tutorialrank.com
MDD 310 Enthusiastic Studysnaptutorial.com
CIS 115 Lessons in Excellence-- cis115.com. CIS 115 All Exercises Devry University (Devry) For more course tutorials visit CIS 115 All.
CIS 115 Education for Service-- tutorialrank.com.
CIS 115 Education for Service-- cis115.com. CIS 115 All Exercises Devry University (Devry) For more course tutorials visit CIS 115 All.
CIS 115 Teaching Effectively-- snaptutorial.com
Making Decisions in a Program
Visual Basic .NET BASICS
Pseudocode algorithms using sequence, selection and repetition
2008/09/22: Lecture 5 CMSC 104, Section 0101 John Y. Park
MSIS 655 Advanced Business Applications Programming
Algorithms, Part 2 of 3 Topics Problem Solving Examples Pseudocode
Algorithms, Part 2 of 3 Topics Problem Solving Examples Pseudocode
Algorithms, Part 2 of 3 Topics Problem Solving Examples Pseudocode
Introduction to Algorithms and Programming
Arrays, Part 1 of 2 Topics Definition of a Data Structure
Algorithms, Part 2 of 3 Topics Problem Solving Examples Pseudocode
Selection Control Structure
Arrays, Part 1 of 2 Topics Definition of a Data Structure
Microsoft Visual Basic 2005: Reloaded Second Edition
Arrays Topics Definition of a Data Structure Definition of an Array
Algorithms, Part 2 of 3 Topics Problem Solving Examples Pseudocode
Programming Logic and Design Fifth Edition, Comprehensive
Programming Right from the Start with Visual Basic .NET 1/e
Based on slides created by Bjarne Stroustrup & Tony Gaddis
Based on slides created by Bjarne Stroustrup & Tony Gaddis
The Selection Structure
Algorithms, Part 2 of 3 Topics Problem Solving Examples Pseudocode
Algorithms, Part 2 of 3 Topics Problem Solving Examples Pseudocode
Arrays, Part 1 of 2 Topics Definition of a Data Structure
Arrays Topics Definition of a Data Structure Definition of an Array
Presentation transcript:

DEVRY CIS 115 F INAL E XAM 3 Check this A+ tutorial guideline at For more classes visit 1. (TCO 1) When creating an IPO Model, program designers generally determine _____ last. (Points : 4) 2. (TCO 1) What is a data item with a name and a value that 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 expect the variable, name, to have? (Points : 4) 5. (TCO 1) You are designing an algorithm that will use a date of What data type would you choose for this date variable? (Points : 4) 6. (TCO 2) What is a tool that developers use to design logic using English-like statements? (Points : 4) 7. (TCO 2) When a program evaluates mathematical expression, which of the following operators (or mathematical operations) has the lowest precedence? (Points : 4) 8. (TCO 2) Which one of the following is not a valid assignment statement in a program? (Points : 4) 9. (TCO 2) Evaluate (2 * 3) ^ 3. (Points : 4) 10. (TCO 2) Review the partial pseudocode below. What is the correct math expression to complete the algorithm and determine 50% of a cost? Prompt “Enter total cost: “ Input cost Set _____ Display “50% of the cost is: “ + total (Points : 4)

S ET I F (( X > 10) AND ( X D ISPLAY “ THE IF PATH EXECUTES ” E LSE D ISPLAY “ THE ELSE PATH EXECUTES ” E ND I F (P OINTS : 4) 12. (TCO 3 & 4) W HAT VALUE GETS DISPLAYED FOR THE VARIABLE X? S ET S ET S ET I F (B > 15) OR () OR (C S ET E LSE S ET E ND I F D ISPLAY X (P OINTS : 4) 13. (TCO 3 & 4) I N THE FOLLOWING PSEUDOCODE, WHAT PERCENTAGE RAISE WILL AN EMPLOYEE IN D EPARTMENT 5 RECEIVE ? I F DEPARTMENT S ET E LSE I F DEPARTMENT S ET E LSE S ET E ND I F E ND I F (P OINTS : 4) 14. (TCO 3 & 4) W HICH OF THE SELECTION STRUCTURES DETERMINES WHETHER THE USER ENTERS A NUMBER BETWEEN 20 AND 45? (P OINTS : 4) 15. (TCO 3 & 4) W HAT VALUE GETS DISPLAYED FOR THE VARIABLE Z? S ET

Set Set If ((balance <> 800) AND (stateCode<> 6) AND (creditCode<> 7) then Set Else Set EndIf Display Z (Points : 4) 1. (TCO 5) The variable used to create an expression controlling the loop is known as the _____. (Points : 4) 2. (TCO 5) Which of the following statements is false? (Points : 4) 3. (TCO 5) Which loop may not execute the body of the loop at all? (Points : 4) 4. (TCO 5) Repetition that loops a certain number of times is typically referred to as _____. (Points : 4) 5. (TCO 5) How many times will the following loop be executed? 6. (TCO 7) Subscripts or indexes of any array are always declared with what data type? (Points : 4) 7. (TCO 7) What is an array element? (Points : 4) 8. (TCO 7) What is the value of the index used to access the last element in a zero-based array declared as num(12)? (Points : 4) 9. (TCO 7) When processing/manipulating the elements of an array, what control structure is used to move through each element within the array? (Points : 4)