Multiple Choice
What makes a CUDA code runs in parallel
A) __global__ indicates parallel execution of code
B) main() function indicates parallel execution of code
C) kernel name outside triple angle bracket indicates excecution of kernel n times in parallel
D) first parameter value inside triple angle bracket (n) indicates excecution of kernel n times in parallel
Correct Answer:

Verified
Correct Answer:
Verified
Q1: Bubble sort is difficult to parallelize since
Q3: The performance of quicksort depends critically on
Q4: the complexity of quicksort is O(nlog n).
Q5: The fundamental operation of comparison-based sorting is
Q6: Graph search involves a closed list, where
Q7: _ algorithms use a heuristic to guide
Q8: Breadth First Search is equivalent to which
Q9: Cost of a parallel system is sometimes
Q10: _ algorithms use auxiliary storage (such as
Q11: Quicksort is one of the most common