click below
click below
Normal Size Small Size show me how
computer sc
computer science
| Question | Answer |
|---|---|
| Iostream file | Header file |
| Hexadecimal Literals | Base of 16, make certain programming tasks more convenient than decimal numbers do |
| Octal Literals | Base of 8, make certain programming tasks more convenient than decimal numbers do |
| Char Data Type | “character”, 1-byte integer |
| Single precision | Key word: float |
| Double precision | Key word: double |
| Rvalue | Any expression that has a value |
| prompt | Tells the user what data he or she should enter |
| operators | Symbols that assign values to things |
| null statement | Empty statement that does nothing |
| decision structure’s | Specific action is taken only when a specific condition exists |
| If statement | Statement that gives conditions |
| % sign | shows the right most number or the remainder |
| If/else statement | Allows more than one thing to happen |
| ! | false statement |
| flag | Boolean or integer variable that signals when a condition exists |
| && | needs both statments to be true |
| || | needs only one statment to be true |