• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/33

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

33 Cards in this Set

  • Front
  • Back
What is a variable's scope?
Where a variable is known in a program
ASCII stands for___________.
American Standard Code for Information Interchange
! is also known as____
bang
% is what operation
MOD (modulus)
What does modulus do?
Takes a remainder of division
What is the characteristic of a float?
The whole part before the decimal point
What does 'ceil (1.5)' produce?
2
What is a MACRO?
A single line function declared at the top with a define statement
One K of memory equals ____
2^10 (1024) bytes
1 nanosecond equals____
1 billionth of a second
What type of error do you get when you divide by an input value that is equal to 0?
Run time error
* is known as _____
splat
How many bits per byte?
8
Function sqrt(x) is in what header file?
math.h
Steve Wozniak did what?
He created APPLE
Who created Pascal?
Niklaus Wirth
Who is the father of C++?
Bonus: What is his nationality?
Bjarne Stroustrup (from Denmark)
Who is the father of C++?
Bonus: What is his nationality?
Bjarne Stroustrup (from Denmark)
What is GUI (GOOEY)?
Icons that are connected to functions. (Like the print icon with an image of a printer)
GUI stands for_____________.
Graphical User Interface
|| is Boolean for ___.
Or
&& is Boolean for _____.
And
! is Boolean for________.
Not
The octoplast is known as the ________ in C++.
Preprocessor directive
Paul Davis did what?
*Created amazon.com
*Created JACK sound system
*Created Linux
James Gosling created________.
Java
What type is the text file you write in the compiler?
a).exe
b).cpp
c).obj
b).cpp
The insertion operator is_____.
<<
(cout)
The extraction operator is ____.
>>
(cin)
The linker is__________.
the connection of your .obj to the header files to create the .exe
z+=3 can be written as________.
z=z+3
lifetime is________
the length of existence of a variable in a program
Actual parameters are:
a) the argument
b) the variable in the function heading
a) the argument