Computer Science Questions
Explore questions in the Computer Science category that you can ask Spark.E!
Functions can send a single value back to the function call, this is a ________ ______.
Global variables are ___________ by all functions defined after them.
A function may only return ____ value, the type of return value is stated in the header.
When an argument is a variable, only a copy of its _______ is passed to the _____________, not the arguments variable itself.
Prototypes need only list the ____________ _______.
Parameter variables are defined/declared in the _________ ________, and used in the function body.
To create a function, we must ________ it.
Calls to functions must be ___ main.
The complier needs to know the _______ ____, _______, and ______________ ______ before main.
Parameter variables are defined/declared in the function header, and used in the ___________ _______.
If there is no return value, then the return type is _____.
Function definitions must come _______ main.
We use functions by "___________" them.
In most programming languages we do this by employing _______/________.
We say that the argument's value is __________ to the parameter variable when the function is called.
what if some method in the super class calls a method - m. m is overriden. when you call this method from the super class, which m will it choose if you are in the subclass
fill in colums based on row or column order(1, 2, 3, etc.)
biggest thing that all classes extend
can subclasses inherit private methods, variables, or the constructor
what to remember about how low and high is update in binary search and when it stops iterating