Upload Button Icon Add office photos

Filter interviews by

InfoService Software Developer Interview Questions, Process, and Tips

Updated 19 Feb 2024

Top InfoService Software Developer Interview Questions and Answers

InfoService Software Developer Interview Experiences

4 interviews found

Interview Questionnaire 

1 Question

  • Q1. How can we use code in software programs
  • Ans. 

    Code is used to instruct computers to perform specific tasks in software programs.

    • Code is written in programming languages such as Java, Python, and C++.

    • It can be used to create user interfaces, manipulate data, and automate processes.

    • Examples include creating a website, developing a mobile app, and building a database system.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Ask the basics of the coding

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via campus placement at Christ University, Bangalore and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Same as all the companies

Round 2 - Technical 

(4 Questions)

  • Q1. Basics of c and python
  • Q2. What are pointers
  • Ans. 

    Pointers are variables that store memory addresses of other variables or functions.

    • Pointers allow direct access to memory locations

    • They are used for dynamic memory allocation

    • Pointers can be used to pass variables by reference

  • Answered by AI
  • Q3. Coding questions basics
  • Q4. Why is python used
  • Ans. 

    Python is used for its simplicity, readability, versatility, and vast libraries.

    • Easy to learn and read code

    • Versatile - used for web development, data analysis, artificial intelligence, etc.

    • Large standard library and third-party modules

    • Community support and active development

    • Cross-platform compatibility

  • Answered by AI

Skills evaluated in this interview

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray SumGiven an array of numbers, find the maximum s ... read more
asked in Cognizant
Q2. Nth Fibonacci NumberNth term of Fibonacci series F(n), where F(n) ... read more
asked in Rakuten
Q3. Merge two sorted arraysNinja has been given two sorted integer ar ... read more
asked in GlobalLogic
Q4. Terms Of APAyush is given a number ‘X’. He has been told that he ... read more
asked in Amazon
Q5. Minimum Number of Platform NeededYou are given the arrival and de ... read more

I applied via Recruitment Consultant and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. Regarding mulesoft api lid connectivity layer with example
  • Q2. Raml structure example
  • Ans. 

    RAML is a YAML-based language for describing RESTful APIs.

    • RAML stands for RESTful API Modeling Language

    • It allows developers to define the structure of their APIs

    • RAML files can include information about endpoints, methods, parameters, and responses

    • Example: #%RAML 1.0 title: Example API baseUri: http://example.com /users: /{userId}: get: description: Get a user by ID responses: 200: bo...

  • Answered by AI
  • Q3. Yaml file how did u configured and how mule will encript the details
  • Ans. 

    YAML file is configured using key-value pairs. Mule can encrypt sensitive data using secure properties.

    • YAML file is a human-readable data serialization format

    • It uses key-value pairs to define configuration

    • Sensitive data can be encrypted using secure properties in Mule

    • Encryption can be done using various algorithms like AES, Blowfish, etc.

  • Answered by AI
  • Q4. Until successful, mule dw methods pluck, flatten, filter
  • Q5. Error handling, types subflow, cache scope

Interview Preparation Tips

Interview preparation tips for other job seekers - It's hard, and deep inside questions which
Some points I didn't got opportunity for me to do in real time practice

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Nov 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What was the job performance

Interview Preparation Tips

Interview preparation tips for other job seekers - Why do you want to work at ibm

InfoService interview questions for designations

 Junior Software Developer

 (1)

 Software Tester

 (1)

 Salesforce Developer

 (1)

 Associate Software Engineer

 (1)

 Technical Lead

 (1)

 System Engineer

 (1)

 Associate Systems Engineer

 (1)

 Senior Systems Engineer

 (1)

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Run time polymorphism code
  • Q2. Linked list code
  • Q3. Deep copy shallow copy differences
  • Ans. 

    Deep copy creates a new copy of an object with its own unique memory space, while shallow copy creates a new object that references the same memory locations as the original object.

    • Deep copy duplicates all nested objects, while shallow copy only duplicates the references to nested objects.

    • Deep copy ensures that changes to the copied object do not affect the original object, while shallow copy may lead to unintended sid...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. More deep questions about polymorphism code
  • Q2. Code for interchange of strings without strcpy
  • Ans. 

    Use a loop to swap characters of two strings without using strcpy function.

    • Create two arrays of characters to store the strings

    • Use a loop to iterate through each character of the strings and swap them

    • Ensure to handle cases where strings have different lengths

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - please prepare oops concept and data structure well because its easy for first round but for second round its too difficult - the interviewer was so irritating and asked very stupid wuestions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Basic C# coding Questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Questions related to Angular
  • Q2. Question related to ASP.NET CORE
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Given strings and asked to write down the first non-repeatable string
  • Q2. Palindrome program in java
  • Ans. 

    A palindrome program in Java checks if a given string reads the same forwards and backwards.

    • Create a function that takes a string input

    • Use a loop to compare characters from both ends of the string

    • Return true if the string is a palindrome, false otherwise

  • Answered by AI
  • Q3. Diamond problem in java
  • Ans. 

    Diamond problem in Java occurs when a class inherits from two classes that have a common ancestor, resulting in ambiguity.

    • Diamond problem arises in multiple inheritance scenarios in Java.

    • It occurs when a class inherits from two classes that have a common ancestor.

    • To resolve the diamond problem, Java does not support multiple inheritance through classes, but it can be achieved using interfaces.

    • Example: Class A and Class...

  • Answered by AI
  • Q4. Given a list of numbers and insisted to get the sum of numbers which gives 6
  • Ans. 

    Iterate through the list and find pairs of numbers that sum up to 6

    • Iterate through the list and check if the current number + any other number in the list equals 6

    • Store the pairs of numbers that sum up to 6 in a separate list

    • Return the list of pairs

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Java based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on your technical skills. Be good at writing pseudo code, Focus on java and oops concepts.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Every single oops concepts
  • Q2. Every sql questions possiible
Round 2 - HR 

(2 Questions)

  • Q1. I attended only technical not yet results announced
  • Q2. I attended only technical not yet result announced
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

SQL , CODING QUESTION PYTHON

Round 2 - Technical 

(2 Questions)

  • Q1. BASIC SQL QUESTIOS
  • Q2. OOPS 4 PILLARS INHERITANCE ETC
Round 3 - HR 

(2 Questions)

  • Q1. TELL ME ABOUT YOURSELF
  • Ans. 

    I am a software developer with 5 years of experience in Java, Python, and SQL.

    • 5 years of experience in Java, Python, and SQL

    • Strong problem-solving skills

    • Experience working in Agile development environment

    • Familiarity with version control systems like Git

    • Passionate about learning new technologies

  • Answered by AI
  • Q2. WHAT DO YOU KNOW ABOUT YOUR COMPANY
  • Ans. 

    Company is a leading software development firm specializing in creating innovative solutions for various industries.

    • Company has a strong reputation for delivering high-quality software products

    • Specializes in creating custom solutions for clients in different industries

    • Known for innovative and cutting-edge technology solutions

    • Has a diverse portfolio of successful projects

    • Company values teamwork and collaboration in thei

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was an online assessment containing 3 DSA questions

Round 2 - Technical 

(2 Questions)

  • Q1. Medium level array questions
  • Q2. Medium level DP questions
Round 3 - HR 

(1 Question)

  • Q1. General behavioural question about

InfoService Interview FAQs

How many rounds are there in InfoService Software Developer interview?
InfoService interview process usually has 2 rounds. The most common rounds in the InfoService interview process are Aptitude Test and Technical.
What are the top questions asked in InfoService Software Developer interview?

Some of the top questions asked at the InfoService Software Developer interview -

  1. Yaml file how did u configured and how mule will encript the deta...read more
  2. How can we use code in software progr...read more
  3. Raml structure exam...read more

Tell us how to improve this page.

People are getting interviews through

based on 3 InfoService interviews
Recruitment Consultant
Campus Placement
67%
33%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Fast track your campus placements

View all
InfoService Software Developer Salary
based on 18 salaries
₹3 L/yr - ₹20.2 L/yr
39% more than the average Software Developer Salary in India
View more details

InfoService Software Developer Reviews and Ratings

based on 3 reviews

4.8/5

Rating in categories

4.8

Skill development

4.8

Work-Life balance

4.8

Salary & Benefits

4.5

Job Security

4.8

Company culture

4.0

Promotions/Appraisal

4.8

Work Satisfaction

Explore 3 Reviews and Ratings
Technical Support Engineer
38 salaries
unlock blur

₹1 L/yr - ₹4.5 L/yr

Consultant
21 salaries
unlock blur

₹4 L/yr - ₹21.3 L/yr

System Administrator
20 salaries
unlock blur

₹0.9 L/yr - ₹8.1 L/yr

Software Engineer
19 salaries
unlock blur

₹2.2 L/yr - ₹11.2 L/yr

Software Developer
18 salaries
unlock blur

₹3 L/yr - ₹20.2 L/yr

Explore more salaries
Compare InfoService with

Cognizant

3.8
Compare

NTT Data Information Processing Services

4.0
Compare

Sutherland Global Services

3.7
Compare

Hexaware Technologies

3.6
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview