Ask Question, Ask an Expert

+61-413 786 465

info@mywordsolution.com

Ask Programming Language Expert

1. Computer programmers often refer to memory addresses using ____notation, or base 16.

a. binary

b. indirect

c. mathematical

d. hexadecimal

2. After a programmer plans the logic of a program, she will next ____.

a. understand the problem

b. test the program

c. translate the program

d. code the program

3. The process of walking through a program's logic on paper before you actually write the program is called ____.

a. desk-checking

b. flowcharting

c. pseudocoding

d. testing

4. What is the problem with the following statement? 100=grade

a. 100 is not a reasonable grade

b. 100 should be in quotes

c. data types don't match

d. value on the left must be a variable name

5. What might be considered the seventh step of the programming process?

a. testing

b. maintaining

c. replacing

d. converting

6. What symbol is used to represent output in a flowchart?

a. square

b. circle

c. parallelogram

d. triangle

7. What is the standard terminal symbol for a flowchart?

a. circle

b. lozenge

c. diamond

d. square

8. A variable name is also called a(n) ____.

a. placeholder

b. identifier

c. constant

d. hexadecimal

9. What is the assignment operator?

a. =

b. *

c. ^

d. %

10. What is an example of a string constant?

a. 1

b. 12432

c. "oops"

d. o

11. In some programming languages, programmers must write a variable ____ telling the compiler what data type is expected for the variable.

a. name

b. termination

c. decision

d. declaration

12. The following pseudocode is an example of a(n) ____ structure:

get number
while number is positive
add to sum
get number

a. sequence

b. decision

c. loop

d. nested

13. The following pseudocode is an example of a(n) ____ structure:

get number
get another number
if first number is bigger than second then
print first number
else
print second number

a. sequence

b. decision

c. loop

d. nested

14. The following pseudocode is an example of a(n) ____ structure:

get number
get another number
add numbers
print result

a. sequence

b. decision

c. loop

d. nested

15. The following pseudocode is an example of ____.

do stepA
do stepB
if conditionC is true then
do stepD
else
do stepE
endif
while conditionF is true
do stepG
endwhile

a. nesting

b. stacking

c. posttest

d. pretest

16. The following pseudocode is an example of ____.

if conditionA is true then
do stepE
else
do stepB
do stepC
do stepD
endif

a. nesting

b. stacking

c. posttest

d. pretest

17. If a program will read 100 data records, you read the first data record in a statement that is separate from the other 99. This is called a ____ read.

a. nested

b. stacked

c. posttest

d. priming

18. The following pseudocode reads a number from the user, multiplies it by 2, and prints the result. What program statement should replace the ? to make this program functional and structured?

start
get inputNumber
while not eof
calculatedAnswer = inputNumber * 2
print calculatedAnswer
?
endwhile
stop

a. no statement is needed

b. if done then exit

c. get inputNumber

d. print inputNumber

19. Structured programs can be easily broken down into routines or ____ that can be assigned to any number of programmers.

a. segments

b. modules

c. units

d. sequences

20. One way to straighten out a flowchart segment that isn't structured is to use what you can call the "____" method.

a. spaghetti code

b. spaghetti bowl

c. restructuring

d. priming

21. What is considered to be a convenience structure?

a. if-then-else

b. while

c. do while

d. sequence

22. The following pseudocode might be re-written using a(n) ____ structure:if class = "Freshman" then

tuitionFee = 75
else
if class = "Sophomore" then
tuitionFee = 50
else
if class = "Junior" then
tuitionFee = 30
else
tuitionFee = 10
endif
endif
endif

a. if-then-else

b. case

c. while

d. do while

23. In a case structure, the term ____ means "if none of the other cases were true."

a. else

b. then

c. default

d. loop

24. In a ____ loop, the loop body continues to execute as long as the answer to the controlling question is yes, or true.

a. do-then

b. do-when

c. do-until

d. do-while

25. In a(n) ____ loop, the loop body continues to execute as long as the answer to the controlling question is no, or false.

a. do-until

b. do-while

c. while

d. if-then-else

26. Fill in the blank in the following pseudocode: if someCondition is true then

do oneProcess _____ do theOtherProcess

a. then

b. while

c. do

d. else

27. What is another name for a loop structure?

a. execution

b. selection

c. iteration

d. case

28. A case structure can be replaced by one or more ____ structures.

a. if-then-else

b. do-while

c. do-until

d. while

29. Which name is best suited to a module that calculates overtime pay?

a. calcO()

b. cO()

c. calculate overtime()

d. calculateOvertime()

30. Which statement is used to indicate the end of a module?

a. stop

b. end

c. return

d. done

31. The ____ can be a useful tool when a program must be modified months or years after the original writing.

a. flowchart

b. hierarchy chart

c. pseudocode

d. variable declaration

32. Which documentation is typically written first?

a. input

b. output

c. internal program

d. external program

33. You can design a printed report on a ____.

a. printer layout

b. print performance chart

c. print character layout

d. printer spacing chart

34. In a ____ program, the user sees a screen and can typically make selections using a mouse or other pointing device.

a. reusable

b. modular

c. GUI

d. command-line

35. User documentation might include ____.

a. how to prepare input for the program

b. to whom the output should be distributed

c. how frequently the program needs to run

d. all of the above

36. Which step occurs first?

a. understanding user's needs

b. clarifying requirements

c. coding program

d. developing program logic

37. Checking that required input files are present would most likely occur in the ____ section of a program.

a. main loop

b. end-of-job routine

c. housekeeping

d. file opening

38. Variable declarations are made in the ____ section of a program.

a. main loop

b. end-of-job routine

c. housekeeping

d. file opening

39. Declaring a variable involves selecting a name and a ____.

a. size

b. length

c. style

d. type

40. Some use a variable-naming convention called ____ notation, in which a variable's data type or other information is stored as part of the name. For example, a numeric field might always start with the prefix num.

a. Prefix

b. American

c. Polish

d. Hungarian

41. A group of variables is often called a ____.

a. linked group

b. data structure

c. data object

d. module

42. When a variable is ____ it is both declared and initialized.

a. set

b. instantiated

c. defined

d. documented

43. How do you physically advance printer paper to the top of a page?

a. issue the pageTop() command

b. issue the top() command

c. it depends on the programming language

d. there is no way to do it

44. What is the default standard output device?

a. printer

b. monitor

c. keyboard

d. mouse

45. What is the problem with the following pseudocode if you assume that the housekeeping() module does not perform a read?

start
perform housekeeping() (without read)
while not eof
read invRecord
profit = invPrice - invCost
print invItemName, invPrice, invCost, profit
endwhile

a. there is no priming read and the while not eof check may fail

b. there is no check for the end of the file

c. the loop is not structured

d. there is no input

46. What is a legal statement assigning a value to the profit variable?

a. invPrice - invCost = profit

b. set profit to Subtract(invPrice, invCost)

c. profit = invPrice - invCost

d. subtract invPrice from invCost, set profit

47. Calculated values should be stored in ____ variables if they will be used again in the program.

a. unnamed

b. temporary

c. work

d. default

48. Where is the best place to close input and output files?

a. main loop

b. housekeeping module

c. end-of-job routine

d. clean up segment

49. In a large program, a programmer might store modules in individual files and use an instruction to ____ them in any program that uses them.

a. source

b. redirect

c. set

d. include

50. Which of the following would most likely be a named constant?

a. x

b. isFinished

c. taxRate

d. TAX_RATE

Programming Language, Programming

  • Category:- Programming Language
  • Reference No.:- M91623717
  • Price:- $20

Priced at Now at $20, Verified Solution

Have any Question?


Related Questions in Programming Language

Question - create a microsoft word macro using vba visual

Question - Create a Microsoft Word macro using VBA (Visual Basic for Applications). Name the macro "highlight." The macro should highlight every third line of text in a document. (Imagine creating highlighting that will ...

Task silly name testeroverviewcontrol flow allows us to

Task: Silly Name Tester Overview Control flow allows us to alter the order in which our programs execute. Building on our knowledge of variables, we can now use control flow to create programs that perform more than just ...

Structs and enumsoverviewin this task you will create a

Structs and Enums Overview In this task you will create a knight database to help Camelot keep track of all of their knights. Instructions Lets get started. 1. What the topic 5 videos, these will guide you through buildi ...

Task arrays and structsoverviewin this task you will

Task: Arrays and Structs Overview In this task you will continue to work on the knight database to help Camelot keep track of all of their knights. We can now add a kingdom struct to help work with and manage all of the ...

Assignment task -q1 a the fibonacci numbers are the numbers

Assignment Task - Q1. (a) The Fibonacci numbers are the numbers in the following integer sequence, called the Fibonacci sequence, and are characterised by the fact that every number after the first two is the sum of the ...

Assignmentquestion onegiving the following code snippet

Assignment Question One Giving the following code snippet. What kind of errors you will get and how can you correct it. A. public class HelloJava { public static void main(String args[]) { int x=10; int y=2; System.out.p ...

Assignment - horse race meetingthe assignment will assess

Assignment - Horse Race Meeting The Assignment will assess competencies for ICTPRG524 Develop high level object-oriented class specifications. Summary The assignment is to design the classes that are necessary for the ad ...

Background informationthis assignment tests your

Background Information This assignment tests your understanding of and ability to apply the programming concepts we have covered throughout the unit. The concepts covered in the second half of the unit build upon the fun ...

Overviewthis tasks provides you an opportunity to get

Overview This tasks provides you an opportunity to get feedback on your Learning Summary Report. The Learning Summary Report outlines how the work you have completed demonstrates that you have met all of the unit's learn ...

Assignment - haskell program for regular expression

Assignment - Haskell Program for Regular Expression Matching Your assignment is to modify the slowgrep.hs Haskell program presented in class and the online notes, according to the instructions below. You may carry out th ...

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As