Programming essentials


Assignment:

Q1. Computer programmers often refer to memory addresses using ____ notation, or base 16.
a. binary
b. indirect
c. mathematical
d. hexadecimal

Q2. 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

Q3. 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

Q4. 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

Q5. What might be considered the seventh step of the programming process?
a. testing
b. maintaining
c. replacing
d. converting

Q6. What symbol is used to represent output in a flowchart?
a. square
b. circle
c. parallelogram
d. triangle

Q7. What is the standard terminal symbol for a flowchart?
a. circle
b. lozenge
c. diamond
d. square

Q8. A variable name is also called a(n) ____.
a. placeholder
b. identifier
c. constant
d. hexadecimal

Q9. What is the assignment operator?
a. =
b. *
c. ^
d. %

Q10. What is an example of a string constant?
a. 1
b. 12432
c. “oops”
d. o

Q11. 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

Q12. 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

Q13. 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

Q14. 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

Q15. 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

Q16. 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

Q17. 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

Q18. 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

Q19. 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

Q20. 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

Q21. What is considered to be a convenience structure?
a. if-then-else
b. while
c. do while
d. sequence

Q22. 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

Q23. In a case structure, the term ____ means “if none of the other cases were true.”
a. else
b. then
c. default
d. loop

Q24. 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

Q25. 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

Q26. 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

Q27. What is another name for a loop structure?
a. execution
b. selection
c. iteration
d. case

Q28. A case structure can be replaced by one or more ____ structures.
a. if-then-else
b. do-while
c. do-until
d. while

Q29. Which name is best suited to a module that calculates overtime pay?
a. calcO()
b. cO()
c. calculate overtime()
d. calculateOvertime()

Q30. Which statement is used to indicate the end of a module?
a. stop
b. end
c. return
d. done

Q31. 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

Q32. Which documentation is typically written first?
a. input
b. output
c. internal program
d. external program

Q33. You can design a printed report on a ____.
a. printer layout
b. print performance chart
c. print character layout
d. printer spacing chart

Q34. 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

Q35. 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

Q36. Which step occurs first?
a. understanding user’s needs
b. clarifying requirements
c. coding program
d. developing program logic

Q37. 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

Q38. Variable declarations are made in the ____ section of a program.
a. main loop
b. end-of-job routine
c. housekeeping
d. file opening

Q39. Declaring a variable involves selecting a name and a ____.
a. size
b. length
c. style
d. type

Q40. 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

Q41. A group of variables is often called a ____.
a. linked group
b. data structure
c. data object
d. module

Q42. When a variable is ____ it is both declared and initialized.
a. set
b. instantiated
c. defined
d. documented

Q43. 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

Q44. What is the default standard output device?
a. printer
b. monitor
c. keyboard
d. mouse

Q45. 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

Q46. 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

Q48. 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

Q49. 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

Q50. Which of the following would most likely be a named constant?
a. x
b. isFinished
c. taxRate
d. TAX_RATE

Solution Preview :

Prepared by a verified Expert
Basic Computer Science: Programming essentials
Reference No:- TGS01926276

Now Priced at $30 (50% Discount)

Recommended (94%)

Rated (4.6/5)