Upload Button Icon Add office photos

InfoService

Compare button icon Compare button icon Compare

Filter interviews by

InfoService Software Developer Interview Questions and Answers

Updated 19 Feb 2024

InfoService Software Developer Interview Experiences

4 interviews found

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

I applied via Campus Placement 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

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

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more

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
  • Ans. 

    I consistently met and exceeded performance expectations through collaboration, innovation, and a strong focus on quality.

    • Achieved a 20% reduction in code bugs by implementing rigorous testing protocols.

    • Led a team project that improved application performance by 30%, enhancing user experience.

    • Received positive feedback from peers and management for effective communication and teamwork.

    • Participated in code reviews, cont...

  • Answered by AI

Interview Preparation Tips

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

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

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about InfoService?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview before Jun 2021.

Round 1 - Coding Test 

Had DSA and aptitude questions

Round 2 - Technical 

(1 Question)

  • Q1. DSA a questions, Database Questions
Round 3 - HR 

(1 Question)

  • Q1. 5 min question and answers about company

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA and database management

I applied via Campus Placement and was interviewed in Jul 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Ques based on programming language you are chooosing, ques on OOPS, DS, SQL
  • Q2. 2-3 ques on logical programming

Interview Preparation Tips

Interview preparation tips for other job seekers - Make OOPS concept stronger
SQL simple ques like highest salary
some interviewer asked to implement link list, binary tree and opertaion on link list insert delete so make sure you have some practical knowledge about it and in DS u should remember all the algo and complexities

I applied via Naukri.com and was interviewed before Sep 2019. There were 6 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. IQ Test
  • Q2. Machine Test
  • Q3. Face To Face

Interview Preparation Tips

Interview preparation tips for other job seekers - basically there are 3 rounds:-
1. IQ Test
2. Machine Test
3. Face to Face

IQ Test is not so tough but prepare well Machine Test
Machine Test Question are like :-
Q.1 - We declare a variable in C++ like "is_this_a_variable" and in Java like "IsThisAVariable". There is underscore in between every word and first alphabet of every word is in lowercase in C++ and in Java first alphabet is in capital without underscore. Create a program in which if user input a string in a C++ variable format it will convert the input in java variable format.

Q2. Count the frequency of a string.
user input string - pqhphi
output-
p - 2
q - 1
h - 2
i - 1

Be strong in algorithms and data structure.
Are these interview questions helpful?

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

It happens in very friendly manner.

  • Q1. 

    Paths in a Matrix Problem Statement

    Given an 'M x N' matrix, print all the possible paths from the top-left corner to the bottom-right corner. You can only move either right (from (i,j) to (i,j+1)) or dow...

  • Ans. 

    Print all possible paths from top-left to bottom-right in a matrix by moving only right or down.

    • Use backtracking to explore all possible paths from top-left to bottom-right in the matrix.

    • At each cell, recursively explore moving right and down until reaching the bottom-right corner.

    • Keep track of the current path and add it to the result when reaching the destination.

  • Answered by AI
  • Q2. Can you create 2 tables in SQL and perform different operations on them?
  • Ans. 

    Yes, I can create 2 tables in SQL and perform operations like INSERT, SELECT, UPDATE, and DELETE.

    • Create Table 1: CREATE TABLE employees (id INT, name VARCHAR(50), salary DECIMAL(10,2));

    • Create Table 2: CREATE TABLE departments (dept_id INT, dept_name VARCHAR(50));

    • Insert Data: INSERT INTO employees VALUES (1, 'John Doe', 50000);

    • Select Data: SELECT * FROM employees WHERE salary > 40000;

    • Update Data: UPDATE employees SET...

  • Answered by AI
Round 2 - Face to Face 

Round duration - 90 minutes
Round difficulty - Medium

No problem occur very friendly environment.

Round 3 - Face to Face 

(1 Question)

Round duration - 90 minutes
Round difficulty - Hard

  • Q1. 

    Rat in a Maze Problem Statement

    You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N ma...

  • Ans. 

    Find all possible paths for a rat in a maze from source to destination.

    • Use backtracking to explore all possible paths in the maze.

    • Keep track of visited cells to avoid revisiting them.

    • Explore all possible directions (up, down, left, right) from each cell.

    • Add the current direction to the path and recursively explore further.

    • If the destination is reached, add the path to the list of valid paths.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in HyderabadEligibility criteriaAbove 7 CGPAVirtusa interview preparation:Topics to prepare for the interview - Linked List, Binary Search Tree ,Queue, Array ,DP ,Graph ,RecursionTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Competitive programming plays a major role when you are appearing for coding rounds as a fresher. In the coding rounds, you won't get direct problems copied from Geeksforgeeks or Leetcode. You would be required to use your logical thinking to go ahead in the process. This is where competitive programming helps.

Tip 2 : Coding rounds are all about Coding + Timing. Most people fail to excel due to the pressure of a timer ticking on your head. So, instead of just solving problems, try to participate in timed contests. This will help you be used to the pressure of the timer.

Tip 3 : Many big companies like Microsoft, Amazon, and even Google expect you to be good at standard problems. So, once you are done with coding round by your logical skills and competitive programming, you must be well versed with some standard problems in order to excel.

Application resume tips for other job seekers

Tip 1 : Make it short, crisp, and simple. It is always good to have a 1 pager resume. 
Tip 2 : Resume must comprise of the following: Educational Qualifications, Technical skills, Projects, Work experience (if any), Achievements. Other than this, you may include some extra co-curricular achievements.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Apr 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I have visited interview location on morning 7am DLF block Hyderabad. Buy my interview was taken in evening 6:45pm. That was not an interview test it was a patience test.

Interview Preparation Tips

Round: Test
Experience: Quite easy..It contains mcq and one programming question. MCQ covers databases,sql,software testing,c++
Tips: You can easily pass the test,no need to worry

Round: Interview
Experience: Questions are among databases and java,they will ask u fav subj and asks questions in that
Tips: Through with ur fav subject..be confident, simple anad basic questions,try to solve secreening test question using java language

Round: Interview
Experience: Its better to say technical only,the hr also asks about test pattren.programming question.then normal HR questions
Tips: It better to do some research about the company,overall it's easy and cake walk for those who are strong in java and databases

General Tips: CSE guys can easily clear that test and interview..without any hesitattion
Skills: Java,databases, SQL, C, General Aptitude
College Name: NIT Warangal
Motivation: Virtusa is emerging company
Funny Moments: In interview they asked about my girl friend,her name andwhen ur are going to marry. answer them in a funny way with smile in your face

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.

Overall Interview Experience Rating

3/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

6-8 weeks 100%
View more
InfoService Software Developer Salary
based on 17 salaries
₹3.3 L/yr - ₹20.7 L/yr
20% 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

4.5

Job security

4.8

Company culture

4.0

Promotions

4.8

Work satisfaction

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

₹1 L/yr - ₹4.5 L/yr

Software Engineer
19 salaries
unlock blur

₹2.4 L/yr - ₹11.2 L/yr

Software Developer
17 salaries
unlock blur

₹3.3 L/yr - ₹20.8 L/yr

Network Engineer
15 salaries
unlock blur

₹1.7 L/yr - ₹4.3 L/yr

Devops Engineer
12 salaries
unlock blur

₹4.1 L/yr - ₹13.9 L/yr

Explore more salaries
Compare InfoService with

Cognizant

3.7
Compare

EXL Service

3.7
Compare

Sutherland Global Services

3.5
Compare

Optum Global Solutions

4.0
Compare
write
Share an Interview