Upload Button Icon Add office photos

Filter interviews by

Indecomm Global Services Software Engineer Interview Questions and Answers

Updated 6 Nov 2024

Indecomm Global Services Software Engineer Interview Experiences

2 interviews found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Questions on programming
  • Q2. Questions on sql

Interview Preparation Tips

Interview preparation tips for other job seekers - advice to double check the role and designation

Software Engineer Interview Questions & Answers

user image Bhanu Prakash H

posted on 16 May 2022

I applied via Walk-in and was interviewed in Apr 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Total 50questioms were given, major questions are from Number Series, Letter series, Seating arrangment, syllogism, Ratios and Proportion types.

Round 3 - Coding Test 

30 SQL Questions were given.

-----/

Goto above link and just practise all, that's enough.

Round 4 - HR 

(1 Question)

  • Q1. Self Introduction, Some basic Python & SQL Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Self introduction, About the company and SQL these are very important.

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

Interview questions from similar companies

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

Coding + Aptitude question

Round 2 - Technical 

(2 Questions)

  • Q1. Basic of programming lang.
  • Q2. DSA and Oop concepts questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview pro
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I applied via Campus Placement

Round 1 - Coding Test 

4 sections Quantitative Analysis, Programming Based (output analysis, error detection), Aptitude and ML Engineering ( activation functions, models etc basics)

Round 2 - One-on-one 

(2 Questions)

  • Q1. Merge Sort simple divide and conquer but a pain to execute they really just look for how logical you are and if your approach is correct
  • Q2. Talk about your projects previous experience etc
Round 3 - HR 

(2 Questions)

  • Q1. What do you think about Q
  • Q2. Personality based questions like what are your hobbies, what drives you etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident consistent and concise
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. WAP to check occurrence of words in a paragraph.
  • Ans. 

    A program to check the occurrence of words in a paragraph.

    • Split the paragraph into words using space as delimiter

    • Create a hashmap to store word frequencies

    • Iterate through the words and update the hashmap accordingly

    • Display the word frequencies

  • Answered by AI
  • Q2. What git command do you use incase PR build is failed
  • Ans. 

    Use git bisect command to find the commit that caused the build failure

    • Use 'git bisect start' to start the bisect process

    • Mark the current commit as bad with 'git bisect bad'

    • Mark a known good commit with 'git bisect good '

    • Git will automatically checkout commits for testing, mark them as good or bad until the culprit commit is found

Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basics of Java OOPS
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

It's aptitude and coding test they asked questions related to data interpretation mostly.and one coding question easy one and two SQL questions I got on joins

Round 2 - Group Discussion 

Topic given by them you have two minutes to think and then discuss with group for 5 minutes. At the end they ask for conclusion from everyone there is group of eight students and they select two or three from them

Round 3 - Technical 

(5 Questions)

  • Q1. Asked about testing
  • Q2. What are types of testing
  • Ans. 

    Types of testing include unit testing, integration testing, system testing, acceptance testing, and regression testing.

    • Unit testing: Testing individual components or functions of the software.

    • Integration testing: Testing how different components work together.

    • System testing: Testing the entire system as a whole.

    • Acceptance testing: Testing to ensure the software meets the requirements.

    • Regression testing: Testing to ensu...

  • Answered by AI
  • Q3. Project related questions
  • Q4. Hr related questions
  • Q5. Whitebox vs black box testing
  • Ans. 

    Whitebox testing is testing the internal logic of the software, while black box testing is testing the functionality without knowledge of the internal code.

    • Whitebox testing involves testing the internal structure, code paths, and algorithms of the software.

    • Black box testing involves testing the functionality, inputs, and outputs of the software without knowledge of the internal code.

    • Whitebox testing is typically done b...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Complete HTML,CSS,JS,ReactJs,Nextjs question
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Technical 

(5 Questions)

  • Q1. Write a program Binary Search?
  • Ans. 

    Binary search is a divide and conquer algorithm that efficiently finds the target value within a sorted array.

    • Start by defining the low and high indices of the array.

    • Calculate the middle index and compare the target value with the middle element.

    • If the target value is less than the middle element, search the left subarray. If greater, search the right subarray.

    • Repeat the process until the target value is found or the s

  • Answered by AI
  • Q2. What isCICD flow?
  • Ans. 

    CI/CD flow stands for Continuous Integration/Continuous Deployment flow, which is a software development practice where code changes are automatically built, tested, and deployed.

    • CI/CD flow involves automating the process of integrating code changes into a shared repository, running automated tests, and deploying the changes to production.

    • Continuous Integration (CI) focuses on automating the build and testing of code c...

  • Answered by AI
  • Q3. How to handle Enum feature?
  • Ans. 

    Enums are a feature in programming languages that allow you to define a set of named constants.

    • Enums can be used to improve code readability by giving meaningful names to values

    • Enums can be used in switch statements to handle different cases

    • Enums can have associated values or raw values for more flexibility

  • Answered by AI
  • Q4. Singleton handles the Syncronized ?
  • Ans. 

    Yes, Singleton handles synchronization by ensuring only one instance of a class is created and providing global access to that instance.

    • Singleton pattern restricts the instantiation of a class to one object.

    • It provides a global point of access to the instance.

    • Synchronization can be implemented in the Singleton pattern to ensure thread safety.

    • Example: Singleton pattern is commonly used in database connections to ensure

  • Answered by AI
  • Q5. What are external Libraries are used in project?
  • Ans. 

    External libraries are pre-written code that can be imported and used in a project to provide additional functionality.

    • External libraries help in reducing development time by providing ready-made solutions for common tasks.

    • Examples include React for front-end development, NumPy for scientific computing in Python, and Retrofit for making network calls in Android apps.

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Questions on my recent project and DSA questions.
Round 2 - Technical 

(1 Question)

  • Q1. Only DSA questions
Round 3 - HR 

(1 Question)

  • Q1. Tell me some thing about yourself and weakness and strengths

Indecomm Global Services Interview FAQs

How many rounds are there in Indecomm Global Services Software Engineer interview?
Indecomm Global Services interview process usually has 2-3 rounds. The most common rounds in the Indecomm Global Services interview process are Coding Test, HR and One-on-one Round.
How to prepare for Indecomm Global Services Software Engineer 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 Indecomm Global Services. The most common topics and skills that interviewers at Indecomm Global Services expect are Android, Front End, Html5, IOS and Ionic Framework.
What are the top questions asked in Indecomm Global Services Software Engineer interview?

Some of the top questions asked at the Indecomm Global Services Software Engineer interview -

  1. Self Introduction, Some basic Python & SQL Questi...read more
  2. questions on programm...read more
  3. questions on ...read more

Tell us how to improve this page.

Indecomm Global Services Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Fast track your campus placements

View all
Indecomm Global Services Software Engineer Salary
based on 97 salaries
₹2.7 L/yr - ₹12.6 L/yr
13% less than the average Software Engineer Salary in India
View more details

Indecomm Global Services Software Engineer Reviews and Ratings

based on 12 reviews

3.0/5

Rating in categories

2.5

Skill development

3.4

Work-life balance

2.7

Salary

3.0

Job security

3.1

Company culture

2.3

Promotions

2.5

Work satisfaction

Explore 12 Reviews and Ratings
Associate Lead
353 salaries
unlock blur

₹1.5 L/yr - ₹9 L/yr

Associate
265 salaries
unlock blur

₹1 L/yr - ₹4.5 L/yr

Senior Software Engineer
199 salaries
unlock blur

₹6 L/yr - ₹25.3 L/yr

Software Engineer
97 salaries
unlock blur

₹2.7 L/yr - ₹12.6 L/yr

Process Associate
75 salaries
unlock blur

₹1.2 L/yr - ₹4.3 L/yr

Explore more salaries
Compare Indecomm Global Services with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

HCLTech

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