Evry Bis 311 Final Examination Answers

Submitted by: Submitted by

Views: 10

Words: 1898

Pages: 8

Category: Other Topics

Date Submitted: 09/18/2016 11:06 PM

Report This Essay

evry BIS 311 Final Examination Answers

Follow Below Link to Download Tutorial

https://homeworklance.com/downloads/devry-bis-311-final-examination-answers/

For More Information Visit Our Website ( https://homeworklance.com/ )

Email us At: Support@homeworklance.com or lancehomework@gmail.com

Question 1.1. (TCO 1) In the systems development life cycle, the goal of the design activity is to _____. (Points : 5)

determine exactly what a new or modified information system should do

create a set of detailed plans or blueprints for the system

build the application

ensure that the application works as desired

Question 2.2. (TCO 2) To plan the code for a procedure, _____ uses standardized symbols to show the steps the procedure must follow to reach its goal. (Points : 5)

pseudocode

a TOE chart

a class diagram

a flowchart

Question 3.3. (TCO 3) Computer memory locations where programmers can temporarily store and change data while an application is running are _____. (Points : 5)

classes

literals

constants

variables

Question 4.4. (TCO 3) In Visual Basic, which of the following correctly declares a named constant with the name strCOURSE that contains the string value “BIS311”? (Points : 5)

Const strCOURSE As String = “BIS311”

String Constant strCOURSE = “BIS311”

Dim strCOURSE As “BIS311”

Const String “BIS311” As strCOURSE

Question 5.5. (TCO 5) A _____ structure is used in an application when a decision needs to be made, followed by an action derived from that decision. (Points : 5)

selection

sequence

repetition

interrogative

Question 6.6. (TCO 5) If intQty contains 60, what will be the value of intPrice after executing the following code?

Select Case intQty

Case 1 To 50

intPrice = 10

Case 51 To 100...