Computer Science
Explore questions in the Computer Science category that you can ask Spark.E!
- The source code is translated into ________ ____.
- Variables represent a location in memory where the data is ________.
- C++ code is written in a file (text file) this is the _______ ____.
- high-level language: resembles _________ __________ (C++, Java, Python)
- Programming languages are written in words low-level language: resembles _____ ____
- Large binary numbers are expressed to humans in ________________.
- A computer only understands _______ _____ (machine code)
- Hexadecimal place values are powers of ___.
- If we have several parameters, list them the () separated by ________.
- When we call a function with multiple parameters the order of the arguments must match the order of the ______________.
- If we pass an argument of a different type then the parameter type, then if possible, the argument will be ____________/_____________ to the parameter type.
- The scope of a parameter variable is the function in which it is ____________.
- If we want a function to have access to the actual argument (ex: to change/update it) we can use a ______________ _____________
- If not all parameters have default values, then the ones _________ ____ listed first.
- Often the reference variable is considered an _________ to the argument
- Static local variables are declared with ______ ____ _____.
- In these cases we say the argument is "________ ___ ___________"
- If more than one parameter is a reference variable each gets its own _
- In the function any changes to the reference variable affect the _________ _____________
- A function's signature is its ______ and list of _____________ ______ (similar to prototype without return type)