Open In App

AMD Internship Interview Experience | On-Campus 2021

Improve
Improve
Like Article
Like
Save
Share
Report

AMD stands for Advanced Micro Devices. AMD came to our campus in April 2021 to recruit interns for 9 months and the process was virtual. They asked for M.Tech (Computer science and VLSI and some electrical branch). We were a total of 750 students, and they just selected students by the basis of resume and provided the shortlisted of 40 students for the interview. Among 40 I was also a shortlisted candidate for the interview. They mailed with the Microsoft Teams link to join the meeting at 11:30 and the meeting lasts for 2 hours. Because two interviewers have interviewed me.

(My Project) – The questions were asked regarding my project.

Interview 1:

  1. Tell me about yourself?
  2. Can you tell me what all layers you have used in the convolutional layers? (My Project)
  3. What is Max pooling layer? (My Project)
  4. Where does fully connected layer comes after convolutional layer or pooling layer? (My Project)
  5. Can you list some activation functions? (My project)
  6. What is the difference between sigmoid function and RELU function? (My Project)
  7. Can you tell in which programming language are you strong?
  8. Programming question

    C




    #include <stdio.h>
    int main()
    {
    int ptr = 5, n=5;
    ptr = malloc(n * sizeof(int))
    printf("%d", ptr);
    return 0;
    }

    
    

    Does this code have any error while compiling if is it, so can you tell me what are the errors?

  9. I am giving a list [2,5,3,4,6,9,10] can you print the numbers present in the even number index of list using list comprehension?
  10. Can you write a recursive code for factorial of a number?

Meanwhile, The next interviewer joined the meeting and asked me to take a 5 min break and come and join the meeting. These are the conversation between the second interviewer.

Interview – 2

  1. Tell me about yourself?
  2. What was your inference from your project?
  3. What are your future works based on your project?
  4. Can you tell me linux command for checking the ram size?
  5. linux command to list file with their file size
  6. linux command to check the cpu usage
  7. Can you tell me in which programming language are you strong?
  8. How do you check the size of data type in C?
  9. Without using sizeof operator how do you find the size of the particular data type?
  10. A list is given [1,2,3,4,5] and output [1,4,9,16,25] you can use any programming language.
  11. Take the case above and get the same output using dictionary.
  12. Print 1 to 100 without using any loop write a C program.
  13. A string is given “MALAYALAM” and output should be “MALY” you can use any programming language.
  14. Without using dictionary how do you remove the duplicate items regarding the before question?
  15. Can you list storage classes in C.
  16. Using static can you write a C program to find the radius of the circle.

Unfortunately, I didn’t get selected they selected 23 students most of the students are from the electronic branch.

No worries failure is just a hurdle in the way to success. So try-hard. Don’t lose hope. 

I will meet you on another blog.

Bye!!! 🙂


Last Updated : 12 May, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads