A variable that stores a true/false value is commonly referred to as
Boolean values
The function which displays output to the screen
What is the printf() function
The go to beginner coding example
What is "hello world"
This is the fastest sorting algorithm.
What is Quicksort
The number used to access a certain position in an array is
An index
C is an object oriented programming language (T/F)
False
Generally the smallest addressable unit of memory
What is a bit
This is the longest sorting algorithm.
Bogosort
The value of x from the code below:
int x = 12;
int y = 12;
x *= y;
What is 144
What is the output of the following code:
auto char var1 = "A";
printf("%d" , var1)
What is 65
Combines the object file with other machine code necessary to run your C++ program is this
What is linker
This sorting algorithm keeps breaking the data up until it can't anymore and then combines it back together in the sorted arrangement
What is merge sort
This can be used to get string input from the user at the keyboard
What is getline () function
What is the purpose of these operators << and >>
A memory location whose contents can change while a program is running is this
What is variable
What is the big O of merge sort
What is n*log(n)
A variable whose contents are another memory location
What is a pointer
The function that returns the number of characters read
What is the scanf() function
This is the systems that contain both the editor and compiler in one integrated environment
What is IDE ( Integrated Development Environment)
This was the first sorting algorithm.
What is radix sort