Answer the following statements true (T) or false (F)

1) A compiler translates high-level language programs into object language.
2) An assembler translates source-language programs into machine-language programs.
3) A compiler converts source-language programs into object-language programs.
4) High-level languages are generally machine-dependent.
5) A machine-language program requires translation before it can be run on a computer.


1) T
2) T
3) T
4) F
5) F

Computer Science & Information Technology

You might also like to view...

The MaxDropDownItems property

a) sets the maximum number of items the list can hold b) creates a scrollbar on the list after it exceeds the set max c) creates a max to how many items the user can add to the list d) can be set from 1 to 1000

Computer Science & Information Technology

This standard defines the six subsystems of a structured cabling system

What will be an ideal response?

Computer Science & Information Technology

_______________ returns the selected item on a ComboBox cbo.

a. cbo.getSelectedIndex() b. cbo.getSelectedItem() c. cbo.getSelectedIndices() d. cbo.getSelectedItems() e. cbo.getValue()

Computer Science & Information Technology

Which of the following are correct invocations for the pow function? If any of the following is correct, give the value returned or assigned, and if apparently incorrect, explain.

Given the following include directive (to get the declaration for the pow function from the math library): ``` #include ``` Now make these declarations: double base = 2, exponent = 3, power = 4; a) power = pow(base, exponent); b) pow(power, base, exponent); c) pow(base, exponent) = power; d) base = pow(exponent, power);

Computer Science & Information Technology