CSI Chapter 6 - Carpe Diem - 4B

123456789101112131415161718192021222324252627282930313233343536373839
Across
  1. 2. To ensure a program that conducts a simple arithmetic operation works, what kind of testing would you use?
  2. 5. To gather instructions from memory location, decode them and execute
  3. 9. Tool used to run and test assembly language programs.
  4. 11. Being capable to change the instructions which a computer receives is an example of a computer being what?
  5. 13. if you needed to design a flowchart for choosing, yes or no, in a user terminal what computer science concept could "split" the charts linear flow.
  6. 14. In the code; integer x\n. x = 4\n. IF x < 5\n. Print "New home!" - the characters inside the double quotations are called
  7. 16. Your program displays an error regardless of input. What kind of testing might you conduct to find the error?
  8. 17. A branch that happens only when one value is lower then another
  9. 19. Which pseudocode construct allows a choice between two actions?
  10. 22. I speak in a low level language, but im a tad better the hexadecimal or ones and zeros. What am I?
  11. 24. You should develop this kind of document when you want to test a program.
  12. 25. a software tool that allows machine language program to be remembered.
  13. 26. Used to display the contents of a register on the screen
  14. 28. Copies data from one register to another
  15. 30. Converts assembly language into machine code
  16. 32. a window located in pep/9 simulator to run machine language program by entering hexadeciaml code for program.
  17. 33. Takes input and stores it in a register as a number
  18. 34. What version of the selection construct does the algorithm choose between two actions?
  19. 35. In an if-else statement, if the IF is true the indented code will?
  20. 37. Controls and resets the program counter
  21. 38. What will be printed if; integer x\n. x = 5\n. IF x < 5\n. Print "Welcome!\n." ELSE \n. Print "Congrats"
  22. 39. What pseudocode construct a value to a variable?
Down
  1. 1. The value of a variable is accessed when the variable is used on what side of "to" in the code "Set sum to sum + num"?
  2. 3. In what type of testing is every single statement in a program executed?
  3. 4. Stores or writes a string of text to memory
  4. 6. Storing, retrieving, and processing data, are all examples of what?
  5. 7. What type of testing is used to test possible input values?
  6. 8. When you run each test case from a test plan, you do this.
  7. 10. used to stop the execution of a program
  8. 12. In computing, the plan for a solution is called an?
  9. 14. used to temporarily store character in memory
  10. 15. What is the address that receives character data from accumaltor?
  11. 18. How many times will "ROCK" be printed with this code; integer x\n. x = 0\n. WHILE(x < 7)/n. Print "ROCK"
  12. 20. This is another name for Clear-Box testing.
  13. 21. A simulation machine program that can be used to execute programs, carrying out commands one at a time.
  14. 23. Names that appear in pseudocode algorithms referring to places in the memory where values are stored are
  15. 27. where machine language program has to be loaded in order to be executed.
  16. 29. What kind of testing would you perform on a program that gives you errors on certain inputs?
  17. 31. reads a character from input device to store in accumulator.
  18. 36. a memory location
  19. 37. cause the program to branch on if certain conditions are met