Question Detail Repeated execution of simple computation may cause compounding of round off errorssyntax errorsrun time errorslogic errors Answer: Option A Similar Questions : 1. Sort which compares adjacent elements in a list and switches where necessary is Insertion sortHeap sortQuick sortBubble sort Answer: Option D 2. Which statement we should ignore in structure programming WHILE-DOGO-TOIT-ELSESWITCH Answer: Option B 3. Which of the languages is often translated to the pseudo code PASCALFORTRANPL/IBASIC Answer: Option A 4. ++i is equivalent to i = i + 2i = i + 1i = i + ii = i - 1 Answer: Option B 5. What are the minimum number of queues needed to implement the priority queue? OneTwoThreeFour Answer: Option BExplanation:One queue is used for the actual storing of data, and the other one is used for storing the priorities. Read more from - Data Structure Questions Answers - Chapter 1