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

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;

7 Cards in this Set

  • Front
  • Back
von Neumann machine
stored program computer x86
uses a cpu and memory to hold instructions and data that make up programs
moore's law
That the number of transistors on an integrated circuit doubles about every two years
malloc () function
allocates the given number of bytes in Heap and returns a pointer to the beginning of the allocated memory
malloc () return a type void*?
because it does not know the type of variable that will be stored in the allocated memory. it returns the void pointer so the programmer may then cast it to whatever pointer wanted.
activation record
a data structure that contains subroutine state information. each activation record corresponds to a call to a subroutine which has not yet terminated with a return.
hardware
understands understands machine language, 0s and 1s
chace
Micro architecture hidden from programmers