Term
|
Definition
|
|
Term
| We should specify algorithms with _____ before we implement them in C |
|
Definition
|
|
Term
|
Definition
|
|
Term
|
Definition
|
|
Term
| Memory is ___ when a variable is declared |
|
Definition
|
|
Term
| what does it mean when something is declared? |
|
Definition
|
|
Term
|
Definition
|
|
Term
| What are three types supported by C? |
|
Definition
-Integer (int) -Double precision floating-point (double) -Character (char) |
|
|
Term
| Define the role of preprocessor directives |
|
Definition
|
|
Term
| Define and apply escape sequences |
|
Definition
| ex) newline (\n) , horizontal tab(\t) , backslash(\\) , double quote (\") |
|
|
Term
| Describe the role of main () in every C program |
|
Definition
|
|
Term
| Explain the purpose of the { and} curly braces used with main or any function |
|
Definition
|
|
Term
| What does every function body begin and end with? |
|
Definition
|
|
Term
|
Definition
|
|
Term
| give an example of a literal string |
|
Definition
|
|
Term
| Where are Literal strings used? |
|
Definition
|
|
Term
| What is the role of return 0 in main ()? |
|
Definition
| Indicates the program terminated successfully |
|
|
Term
|
Definition
|
|
Term
| What software tool reports syntax errors? |
|
Definition
|
|
Term
|
Definition
|
|
Term
| What are the rules for naming an identifier? |
|
Definition
|
|
Term
|
Definition
|
|
Term
| What are Boolean expressions? |
|
Definition
|
|
Term
| How do you apply Boolean expressions? |
|
Definition
|
|
Term
| What are apply operators? |
|
Definition
|
|
Term
| Describe how to construct and evaluate valid numerical expressions, including mixed-type expressions |
|
Definition
|
|
Term
| What is operator precedence? |
|
Definition
|
|
Term
| What symbols have the same precedence? |
|
Definition
*, /, % have the same precedence +, - have the same precedence, but lower than *, /, % |
|
|
Term
| What's the difference between = and == |
|
Definition
|
|
Term
| What is the difference between implicit type casting and explicit type casting? |
|
Definition
|
|
Term
| How do you apply prinf()? |
|
Definition
|
|
Term
| How do you apply scanf()? |
|
Definition
|
|
Term
|
Definition
|
|
Term
| What are elements of "good" C style and "best" programming practices? |
|
Definition
|
|
Term
| Describe a logical memory diagram that represents variables |
|
Definition
|
|
Term
| What is the general algorithms applied to problems in this course? |
|
Definition
Get inputs Perform computations Output results |
|
|