What are the different structured loops

Assignment Help C/C++ Programming
Reference no: EM13939704

1. Analyze the following pseudocode. Whats the ansr's final value ?

Num = 8 ansr =0 if num > 5 then if num < 20 then ansr =1 else ansr = 2 endif endif .

A) 0

B) 1

C) 2

D) 7

2. Which piece of pseudocode represent the checking the loop condition

A) rep = 1

(B) rep=rep +1

(C) while (rep< 5)

(D) print " warning "

3.In a control break routine, how do you know when the last category has finished being processed ?

A) at the end of the file

B) when every category is the same

C) when the value of the category is the same as the vale of the control break field

D) there is no way to tell

4.Which of the following is another name for an array?

A) group

B) sequence

C) matrix

D) subscript

5) What piece of pseudocode represents incrementing the loop control variable.

A) rep = 1

B) rep=rep + 1

C) while (rep<5)

D) print "warning "

6) Which of the following is a nontrivial true example of the greater than or equal to operator ?

A) 1> 5

B) 1> = 5

C) Time =3

D) Time > = 4

8) In order to have the most efficient program, which question should be asked first when working with an AND decision.

A) the one that is less likely to be true

B) the one that is more likely to be true

C) the one that involves fewer comparisons

D) the one with the lower valve

9) When listing employees who make more that $10 and less than $12 per hour, you are making a decision bases on a:

A) Range

(B) row

(C) variable

(D) value

10) When a loop control variable is not altered during loop execution, a(n) __________ loop may result.

A) decrement

B) infinite

C) indeterminate

D) default

11)In the following pseudocode sample which will be printed if the value of empDept is 11?

If empDept >=8 the
superviorName = "Fontana
else
if empDept > = 4 then
supervisorName = "Escher "
else
supervisorName + "Dillion"
endif
endif
print supervisorName

A) Fontana

B) Escher

C) Dillion

D) Nothing

11)Which of the following is true of a structured loop

A) the loop can exit from any point

B) the loop body must execute at least one

C) the loop condition represent the only exit from the loop

D) the loop can repeat an infinite number of times

12)When creating a grand total by adding up several subtotals you are

A) rolling up the totals

B) grouping the totals.

C) grabbing the totals

D)grand totaling.

13) What is the term for each part of an array

A) variable

B) element

C) subscript

D) superscripts

14)Array subscript are always

A) large numbers

(B) characters

(C) negative values 3

(D) integers

15)What do array elements all have in common

A) pointer

B) memory location

C)data type

D) default value

Question 15-17

X =1
FoundIt ="N" then
While x< 7
If custItemNo = validItem[x] then
foundIt = "Y"
endif
x =x+1
endwhile
if foundIt ="N" then
print "No such item"
endif

15) In the above code which of the following is a flag variable

A) foundIt

B) x

C) custItemNo

D) validItem

16) In the above code which of the following is an array variable

A) foundIt

B) x

C) custItemNo

D) validItem

17) In the above code , which of the following is the variable being searched for.

A) foundIt

B) x

C) custItemNo

D) validItem

18) If the array list has 4 elements then the statement, then the statement list [5] is:

A) valid

B) out of bounds

C) out of range

D) equal to zero

19) In a for loop, a(n) _____ value is used to control how the loop control variable is incremented.

A) step

(B) group

(C) flag

(D) sentinel

20) A while loop has a(n) _____ condition.

A) posttest

B) pretest

C) infinite

D) incremental

21)Array subscripts must be :

A) negative

B) greater than zero

C) sequential

D) with decimal places

Attachment:- programming essentials(help 2).zip

Reference no: EM13939704

Questions Cloud

Describe the principle characteristics of these individuals : Undertake an analysis of your own job and its context. If you do not have managerial (or similar) experience, or if for some other reason it is not appropriate to analyse your own job, you may choose instead the job of another individual who agree..
Problem regarding the indigenous education : Students are to provide a 500 word pedagogical statement on the importance of embedding Indigenous perspectives in units of work. This statement should be supported by referred literature and linked to the relevant AITSL requirements.
Prepare a statement of cash flows for erie : Prepare a statement of cash flows for Erie, using the indirect method to compute net cash flow from operating activities.
What is your position on organ transplantation : Liver and lung lobes and kidneys can be transplanted via live donor. Find an article that describes the differences between live donor and cadaveric organ transplantation. Post a brief summary of the advantages and disadvantages of live vs. cadave..
What are the different structured loops : Which piece of pseudocode represent the checking the loop condition
Concepts of successful negotiation skills : In your introduction, present a thesis related to the content of the chapter, and then explain how the chapter is arranged to support the thesis. Next, support the thesis based on the concepts of successful negotiation skills
Conceptual design specification report : In this assignment, you will produce a conceptual design specification report for the attached case using a number of design techniques. Note that this is an individual, not a group, assignment.
Use headers for sections such as inventory and accounts : The paper should be one to two pages in length, single spaced, with one inch margins on all sides. Use 'headers' for sections such as Inventory and Accounts Receivable.
Condition of the management software industry : 1. What is the market condition of the management software industry? What is Yonyou's market position? 2. What strategic decisions have caused Yonyou's past success? Are they still viable post 2013?

Reviews

Write a Review

C/C++ Programming Questions & Answers

  Implement a function to recursively

Implement a function to recursively determine if a word is a palindrome. A palindrome is a word, phrase, number, or other sequence of symbols or elements, whose meaning may be interpreted the same way in either forward or reverse direction.

  Program that allows two human players to play the chess

The official rules of checkers allows a player to jump many times in a row with the same piece, capturing several of the opposing pieces on the same turn.

  Find the equation of the line tangent to the graph

Find the equation of the line tangent to the graph of f(x) = (x^2 +1)/ sqrt(x)  at (1,2). Use the definition of derivative instead of derivative rules.

  C++ program that prompts the user to enter a length in feet

If the user enters a negative number or a non-digit number, throw and handle an appropriate exception and prompt the user to enter another set of numbers.

  Loops and nested loops

Loops and Nested Loops- Suggest one (1) example of a problematic programming situation or scenario that nested loops could at least partially resolve. Justify your response

  Prints the row sums and the column sums

Write a program that reads a 5 x 5 array of integers and then prints the row sums and the column sums

  Repeat these questions by writing functions

Repeat these questions by writing functions that receive the arrays as constant reference parameters and return the appropriate values through the function name (via return statement). The function header could look like:

  What is the bug or logic error in the above program

What is the bug or logic error in the above program. Add the lines to fix it. This is an example of __nested__________ loops. How many times does the outer loop execute

  Program for keeping course list for each student in college

Write a program for keeping a course list for each student in a college. The information about each student should be kept in an object that contains the student's name and a list of courses completed by the student.

  Detailed proposal of the hardware and types

Write a detailed proposal of the hardware and types of NICs you recommend they must purchase to make this project a success.

  Program that asks the user to enter the number of miles

Write a C - program that asks the user to enter the number of miles traveled and the number of gallons of gasoline consumed. It should then calculate and display the miles-per-gallon value. Confine your output to 1 decimal place.

  Explain 2 dimensional arrays in detail

The data collected is each day's service calls that come in are recorded in a file named SericeCalls.dat.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd