Multiple Choice
What is the equivalent of general C program with CUDA C:
Int main(void)
{
Printf("Hello, World!\n") ;
Return 0;
}
A) int main ( void )
{
Kernel <<<1,1>>>() ;
Printf("hello, world!\\n") ;
Return 0;
}
B) __global__ void kernel( void ) { }
Int main ( void ) { kernel <<<1,1>>>() ;
Printf("hello, world!\\n") ;
Return 0;
}
C) __global__ void kernel( void ) {
Kernel <<<1,1>>>() ;
Printf("hello, world!\\n") ;
Return 0;
}
D) __global__ int main ( void ) {
Kernel <<<1,1>>>() ;
Printf("hello, world!\\n") ;
Return 0;
}
Correct Answer:

Verified
Correct Answer:
Verified
Q1: Triple angle brackets mark in a statement
Q3: NVIDIA CUDA Warp is made up of
Q4: The CUDA architecture consists of --------- for
Q5: What is Unified Virtual Machine<br>A)it is a
Q6: CUDA provides ------- warp and thread scheduling.
Q7: CUDA supports programming in ....<br>A)c or c++
Q8: FADD, FMAD, FMIN, FMAX are ----- supported
Q9: NVIDIA 8-series GPUs offer -------- .<br>A)50-200 gflops<br>B)200-400
Q10: CUDA stands for --------, designed by NVIDIA.<br>A)common
Q11: If variable a is host variable and