Procedural languages are also called ____ languages.

A. immediate
B. translated
C. interpreted
D. imperative


Answer: D

Computer Science & Information Technology

You might also like to view...

Why are types important?

What will be an ideal response?

Computer Science & Information Technology

Explain how each of the three wrap attribute values of text areas work.

What will be an ideal response?

Computer Science & Information Technology

If you enter 1 0, what is the output of the following code?

``` #include using namespace std; int main() { // Read two intergers cout << "Enter two integers: "; int number1, number2; cin >> number1 >> number2; try { if (number2 == 0) throw number1; cout << number1 << " / " << number2 << " is " << (number1 / number2) << endl; cout << "C" << endl; } catch (int e) { cout << "A" << endl; } cout << "B" << endl; return 0; } ``` a. B b. AB c. A d. C

Computer Science & Information Technology

In Word, the default spacing after a paragraph is ________ pt

A) 0 B) 6 C) 8 D) 10

Computer Science & Information Technology