Search results

  1. J

    Multiple Choice

    Yes, it probably would be best defined as a stress test. But benchmarking is definitely not stress testing. The situation lacks key features of benchmarking, mainly comparing results (usually numerical) to another product. Without that, it is simply not benchmarking. First line from wiki...
  2. J

    Last question of evolution of programm

    I put imperative, imperative, OOP. Imperative for the first two because it's a very well defined process of putting together the motherboard (just sequentially attach all of the stuff, program order will always be the same, no need for OOP for more advanced data structures). Imperative for the...
  3. J

    Multiple Choice

    My multiple choice 1.A 2.A 3.C 4.B 5.D 6.D 7.D 8.A 9.D 10.D 11.A 12.C 13.C 14.D 15.C 16.C 17.B 18.B 19.A 20.C Questions of interest: Question 6 - I don't think that modifying code to meet changing requirements is a big part of maintenance. I think that that is part of releasing new main...
  4. J

    Multiple Choice

    Nope, sorry bro. The answer was [C], insertion sort. The sorted section of the array was (6 4), and the unsorted section was (2 5 3), and since the 2 is lower than 6 and 4, it does not move. The array is not sorted during the second pass. The second pass of a selection sort on (6 4 2 5 3)...
Top