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