Quiz #3

This quiz deals mostly with questions from chapter #1 and chapter #2 in the text.

Question #1: The program statements you write using a programming language are known as ___________ code.

Question #2: The translated code in machine language is known as _____________ code.

Question #3: A ______________ is the name for data stored in a named memory location.

Question #4: ans = ans + 1 is called an __________________ statement.

Question #5: What your book calls ____________ can also be refered to as subroutines, procedures, functions or methods.

Question #6: The two major models or paradigms used by progammers are ___________________ and ____________________________.

Question #7: The if structure has two possible response. One is executed if the if statement is ____________ and one is executed if the if statement is _________________.

Question #8: In the statement rslt = rslt + amt the = is called ___________________. In the statement if rslt = 0 the = is called an ________________ and is testing for result __________ to 0.

Question #9: In the statement totAmt = totAmt + amt if the totAmt contains the value 100 and amt contains the value 12 before the statement is executed, what will totAmt be after the statement is executed.

Question #10: To be classified as a programming language, the language has to have the ability to handle three things: _________________, _________________, and __________________.