Across
- 2. LOOP In most computer programming languages, a while loop is a control flow statement that allows code to be executed repeatedly based on a given Boolean condition. The while loop can be thought of as a repeating if statement.
- 5. In computer programming, a string is traditionally a sequence of characters, either as a literal constant or as some kind of variable. The latter may allow its elements to be mutated and the length changed, or it may be fixed (after creation).
- 6. quality of hospital food is highly variable"
- 9. denoting a system of algebraic notation used to represent logical propositions by means of the binary digits 0 (false) and 1 (true), especially in computing and electronics.
- 10. An integer is a whole number (not a fraction) that can be positive, negative, or zero. Therefore, the numbers 10, 0, -25, and 5,148 are all integers. Unlike floating point numbers, integers cannot have decimal places. Integers are a commonly used data type in computer programming.
- 11. TYPE a particular kind of data item, as defined by the values it can take, the programming language used, or the operations that can be performed on it.
- 13. a process or set of rules to be followed in calculations or other problem-solving operations, especially by a computer.
- 14. ERROR In computer science, a syntax error is an error in the syntax of a sequence of characters or tokens that is intended to be written in a particular programming language. For compiled languages, syntax errors are detected at compile-time. A program will not compile until all syntax errors are corrected.
Down
- 1. int (signed integers): They are often called just integers or ints, are positive or negative whole numbers with no decimal point. ... float (floating point real values) : Also called floats, they represent real numbers and are written with a decimal point dividing the integer and fractional parts.
- 3. a particular kind of data item, as defined by the values it can take, the programming language used, or the operations that can be performed on it.
- 4. Programmers write computer programs in a language we call code. However, because no one is perfect, computer programmers sometimes make mistakes when writing their code. These mistakes are known as 'bugs'. ... An important part of programming is testing your program and 'debugging' (which means removing the bugs). 2.
- 6. basic algorithm for division"
- 7. VARIABLE In computer programming, a global variable is a variable with global scope, meaning that it is visible (hence accessible) throughout the program, unless shadowed. The set of all global variables is known as the global environment or global state.
- 8. not consistent or having a fixed pattern; liable to change.
- 12. LOOP A "For" Loop is used to repeat a specific block of code a known number of times. For example, if we want to check the grade of every student in the class, we loop from 1 to that number. When the number of times is not known before hand, we use a "While" loop.
