Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by IBM Team. If you also belong to the team, you can get access from here

IBM Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

IBM Golang Developer Interview Questions and Answers

Updated 12 Dec 2024

IBM Golang Developer Interview Experiences

5 interviews found

Golang Developer Interview Questions & Answers

user image balajix ust

posted on 25 Nov 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Coding Test 

1) Search an array element
2) braces balance program
3) anagrams Program

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Using goroutine, print even and odd numbers upto 100
  • Ans. 

    Using goroutine to print even and odd numbers upto 100

    • Create two goroutines, one for printing even numbers and one for printing odd numbers

    • Use a channel to communicate between the goroutines

    • Loop through numbers 1 to 100 and send them to the appropriate goroutine for printing

  • Answered by AI

Golang Developer Interview Questions Asked at Other Companies

asked in Capgemini
Q1. can we return difference data type and how ,what architeture you ... read more
asked in Capgemini
Q2. difference between buffered channel and unbuffered channel,error ... read more
asked in Capgemini
Q3. why we use go,advantages of golang,does any other language suppor ... read more
Q4. OPPs concept in golang or not and yes how ?
Q5. explain go path and go root.what is encapsulation.write a program ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response

I applied via LinkedIn and was interviewed in Apr 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Write a program to merge two linked list
  • Ans. 

    Merge two linked lists into a single linked list

    • Create a new linked list to store the merged elements

    • Iterate through both input linked lists and add elements to the new list in sorted order

    • Handle cases where one list is longer than the other

  • Answered by AI
Round 2 - Coding Test 

Write REST API's in Go

Round 3 - HR 

(1 Question)

  • Q1. Managerial discussion. Asked about the challenges, how did you fix it? Why are you looking for a job change?
Round 4 - One-on-one 

(1 Question)

  • Q1. Same as that of round 3.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding using map and goroutines

IBM interview questions for designations

 Developer

 (3)

 Application Developer

 (111)

 Software Developer

 (99)

 Java Developer

 (20)

 Backend Developer

 (16)

 Web Developer

 (7)

 Salesforce Developer

 (6)

 Reactjs Developer

 (5)

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

Interviewer asked me some basic on golang concurrency, slices & Interface. And asked me to write a code a implement a linklist.

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Why should we hire you?
  • Q2. What are your strengths and weaknesses?
  • Q3. What do you know about our company?
  • Q4. Are u willing to relocate?
  • Q5. What are your educational qualifications?
  • Q6. What are your technical skills?
  • Q7. How can you define you are a different person from others?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and maintain good communication skills and eye contact with the interviewer.

I applied via Campus Placement and was interviewed in Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. 1. Introduce yourself?
  • Q2. 2.Why DXC?
  • Q3. 3.As a non-IT why to software? (I'm from ece)
  • Q4. 4. About your weakness and how you overcome it?

Interview Preparation Tips

Interview preparation tips for other job seekers - My interview is good. My advice is that don't panic, overtensed or nervous. This is the chance to prove yourself what you are. And other this is many people think there is no need of preparation for interview, in my point of view.. For fresher must and should prepare or beware of that. As we all know that are the HR questions but we don't know the answers for that so, be prepared for that. And important thing is RESUME many questions about this so, build your resume by you and study about your projects and all.
All the best ✊
Thankyou 😊

I applied via Naukri.com and was interviewed before Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Online technical MCQ exam you have to clear..
  • Q2. After online technical MCQ telephonic round approx 30min.

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic knowledge will be asked at technical round.
Be confident while giving answer.


Based on prior experience they will ask questions.

Interview Questionnaire 

2 Questions

  • Q1. Tell me your roles and responsibility currently handling in your organization.
  • Q2. Why do you looking for change?

Interview Preparation Tips

Interview preparation tips for other job seekers - 1.Prepare and attend the interview
2.Be always in calm and relaxed mode even you not prepared anything for interview.
3.Answer slowly and clearly.
4.If you are not able to answer for some questions, tell that you are not sure about that concept and try to give an answer.
5.Have a smile in face. Don't get panic.
6.Take a long breath b4 attending the interview.

Contact me on XXXXX if you have more questions and need help.

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Wap of bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the next element is smaller, swap them

    • Repeat this process for all elements in the array

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q2. Wap of prime number
  • Ans. 

    A program to print all prime numbers

    • Take input from user for range of numbers

    • Loop through the range and check if each number is prime

    • Print the prime numbers

  • Answered by AI
  • Q3. What is hashmap?
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows constant time access to values based on their keys.

    • Hashmap uses a hash function to map keys to indices in an array.

    • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

    • Examples of hashmap implementations include Java's HashMap class and Python's dict type.

  • Answered by AI
  • Q4. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add new properties and methods.

    • For...

  • Answered by AI
  • Q5. Call by value and call by reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself

Skills evaluated in this interview

IBM Interview FAQs

How many rounds are there in IBM Golang Developer interview?
IBM interview process usually has 1-2 rounds. The most common rounds in the IBM interview process are Coding Test, Technical and HR.
How to prepare for IBM Golang Developer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at IBM. The most common topics and skills that interviewers at IBM expect are Java, HTML, Javascript, Python and Kubernetes.
What are the top questions asked in IBM Golang Developer interview?

Some of the top questions asked at the IBM Golang Developer interview -

  1. Using goroutine, print even and odd numbers upto ...read more
  2. Write a program to merge two linked l...read more
  3. Same as that of round...read more

Tell us how to improve this page.

IBM Golang Developer Interview Process

based on 5 interviews

1 Interview rounds

  • Coding Test Round
View more
IBM Golang Developer Salary
based on 7 salaries
₹6 L/yr - ₹22 L/yr
58% more than the average Golang Developer Salary in India
View more details
Application Developer
11.9k salaries
unlock blur

₹5.8 L/yr - ₹26.2 L/yr

Software Engineer
5.6k salaries
unlock blur

₹6.9 L/yr - ₹22.2 L/yr

Advisory System Analyst
5.4k salaries
unlock blur

₹9.5 L/yr - ₹25.5 L/yr

Senior Software Engineer
4.9k salaries
unlock blur

₹8 L/yr - ₹32 L/yr

Software Developer
4.7k salaries
unlock blur

₹10.1 L/yr - ₹32.7 L/yr

Explore more salaries
Compare IBM with

Oracle

3.7
Compare

TCS

3.7
Compare

Cognizant

3.7
Compare

Accenture

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview