Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Nvidia Interview Experience | Set 5

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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?

 

If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.

Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.

My Personal Notes arrow_drop_up
Last Updated : 06 Nov, 2017
Like Article
Save Article
Similar Reads