• 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/13

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;

13 Cards in this Set

  • Front
  • Back
Where do 'object-code files' come from?
Translated from human-readable source code by the compiler.
What is the 'linker'?
Links object files and library files.
Define a Variable.
Location with a computer's memory
How many bytes in an integer?
4
How many bytes in a floating-point value?
8
How many values may be held by a variable at one time?
One.
What record does a variable keep of previous values held?
None.
What characters may be used in a variable name?
Alphanumeric and '_'
Can a variable name start with a number?
No.
Are variable names case-sensitive?
Yes.
What issue may arise from a variable name longer than 8 characters?
Older compilers only permit 8 characters.
What two types of scope may variables have?
Global or block.
Name five datatypes.
Bool, char, int, float, double