Open In App

Nvidia Interview Experience | Set 5

Improve
Improve
Like Article
Like
Save
Share
Report

Round 1:

  • What is IPC and how semaphore is used for this?
  • What’s wrong in the given code?

char* func(){

char name[] = “name”;

return name;

}

int main(){

char* ptr = func();

printf(“%s”,&ptr);

}

  • Implement stack in C?
  • what is the difference between C and C++?
  • What is the difference between stacks or queues?
  • Describe your project and what are its applications?
  • Describe how to implement matrix multiplication in CUDA?
  • What is inheritance and how to implement it in C?
  • What is polymorphism give an example?
  • What is perceptron and how it is different from neural network?
  • What is deep learning or deep network?
  • How to implement unsupervised learning in deep neural networks?
  • what is learned in deep learning?

 


Last Updated : 06 Nov, 2017
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads