The order of simplicity to a human of the three basic types of languages is: (easiest to hardest)

a) high-level, assembly, machine
b) assembly, machine, high-level
c) machine, high-level, assembly
d) machine, assembly, high-level

a) high-level, assembly, machine

Computer Science & Information Technology

You might also like to view...

Two different networks can be connected by using a(n) ________

Fill in the blank(s) with correct word

Computer Science & Information Technology

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

1. Given the two C++ array declarations: 2. In the sequential search algorithm, items are examined alternately, odd then evens, in order to find whether the target value is in the array (and if the target is present, to the index of the target.) 3. In a sorting an array, the items in the array are rearranged so that for all j and k, if j < k, then array[j]<=array[k] 4.In the definition, double d[10] = {0.0}; only d[0] is initialized to zero, the rest are uninitialized, just like x in the definition double x;

Computer Science & Information Technology