Analysis of Algorithms and Computational Complexity Questions and Answers
Practice ModeShowing 10 of 239 questions
Q131
What is the name of the computer programming language which is credited with 'no threshold and no ceiling' ?
Answer: Option A
Q132
The Computer language LOGO is based on another powerful list processing language for Robotics and Artificial Intelligence. Can you tell the name of that language ?
Answer: Option D
Q133
Which of the following is one of the widely used algol based simulation language ?
Answer: Option C
Q134
Which decision procedure has at least doubly-exponential time complexity ?
Answer: Option C
Q135
Which sort will operate in quadratic time relative to the number of elements in the array (on the average) ?
Answer: Option D
Q136
What is the weight of the minimal spanning tree for the graph in problem 234 ?
Answer: Option D
Q137
After constructing a "sorted" binary insertion tree, to produce a sorted array to numbers (for printing purposes), what must be done ?
Answer: Option B
Q138
Which of the following sorting algorithms yield approximately the same worst-case and average-case running time behaviour in O (n log n) ?
Answer: Option B
Q139
Super-Jarvis said "I can write a super merge sort which splits an array into 4 components (unlike regular merge sort which splits in two) and then recursively sort the 4 subarrays and thend merges them. Though similar to merge sort, it is faster and called SJ4." What is true ?
Answer: Option B
Q140
A complete binary tree of level 5 has how many nodes ?
Answer: Option C