Q. _________ is Callable from the device only

  • (A) _host_
  • (B) __global__??
  • (C) _device_
  • (D) none of above
πŸ’¬ Discuss
βœ… Correct Answer: (C) _device_

Q. ______ is Callable from the host

  • (A) _host_
  • (B) __global__??
  • (C) _device_
  • (D) none of above
πŸ’¬ Discuss
βœ… Correct Answer: (B) __global__??

Q. CUDA supports ____________ in which code in a single thread is executed by all other threads.

  • (A) tread division
  • (B) tread termination
  • (C) thread abstraction
  • (D) none of above
πŸ’¬ Discuss
βœ… Correct Answer: (C) thread abstraction

Q. In CUDA, a single invoked kernel is referred to as a _____.

  • (A) block
  • (B) tread
  • (C) grid
  • (D) none of above
πŸ’¬ Discuss
βœ… Correct Answer: (C) grid

Q. A grid is comprised of ________ of threads.

  • (A) block
  • (B) bunch
  • (C) host
  • (D) none of above
πŸ’¬ Discuss
βœ… Correct Answer: (A) block

Q. A block is comprised of multiple _______.

  • (A) treads
  • (B) bunch
  • (C) host
  • (D) none of above
πŸ’¬ Discuss
βœ… Correct Answer: (A) treads

Q. a solution of the problem in representing the parallelismin algorithm is

  • (A) cud
  • (B) pta
  • (C) cda
  • (D) cuda
πŸ’¬ Discuss
βœ… Correct Answer: (D) cuda

Q. Host codes in a CUDA application can not Reset a device

  • (A) true
  • (B) false
  • (C) ---
  • (D) ---
πŸ’¬ Discuss
βœ… Correct Answer: (B) false

Q. Host codes in a CUDA application can Transfer data to and from the device

  • (A) true
  • (B) false
  • (C) ---
  • (D) ---
πŸ’¬ Discuss
βœ… Correct Answer: (A) true

Q. Host codes in a CUDA application can not Deallocate memory on the GPU

  • (A) true
  • (B) false
  • (C) ---
  • (D) ---
πŸ’¬ Discuss
βœ… Correct Answer: (B) false

Jump to