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

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;

28 Cards in this Set

  • Front
  • Back
In programming an object hold?
Information
In Programming, an object has to be declared when?
Before use
In programming, when an object is declared what happens
Defines, and creates it
What does the abbreviation IDE stand for?
Integrated Development Environment
What IDE function allows developing source code?
Editor
What IDE function converts high level language source code to machine specific code?
Compiler
What IDE function converts machine instructions to binary code understood by the computer?
Assembler
What IDE function combines dynamic run-time libraries with your program to enable it to execute?
Debugger
What IDE function combines libraries with a program you write?
Linker
Why does IDE have to create a project folder?
Tp keep all the files together
What source file is automatically created by the IDE when a "Hello World" console project is created?
Main.cpp
In Illustration2, Which line is the compiler directive?
2
In Illustration2, which line is the function prototype?
9
In Illustration2, which line is the main function declaration?
11
In Illustration2, which line declares objects x,y,t?
32
In Illustration2, which line is defines the function?
30
In Illustration2, which line returns a value to the operation systems?
26
In Illustration2, what data type is returned to the operating system?
integer
In Illustration2, what is the scope (give the line numbers) for the objects named X?
31-41
In Illustration2, line 7, the square brackets "[]" are used to denote what?
array?
In Illustration2, lines 12 and 27 use the braces "{}" to define what?
Block of code
In Illustration2, line 20, uses parenthesis "()" to do what?
Parameters
In Illustration2, line2 uses the cararts "<>" to signify what?
System includes
In Illustration 3, how many expressions are included in the statment?
1
In Illustration 3, How many objects are used?
2
In Illustration 3, what type of operator is used?
Assigment
In Illustration 3, What does the operator do?
Copy
In Illustration 3, What makes the kine a statement?
;