Upload Button Icon Add office photos

IGT Solutions

Compare button icon Compare button icon Compare

Filter interviews by

IGT Solutions Software Engineer Interview Questions, Process, and Tips

Updated 2 Nov 2024

Top IGT Solutions Software Engineer Interview Questions and Answers

IGT Solutions Software Engineer Interview Experiences

3 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. What is inheritance
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class can inherit attributes and methods from another class.

    • Allows for code reusability by creating a new class based on an existing class

    • Derived class (subclass) inherits properties and behaviors from a base class (superclass)

    • Can have multiple levels of inheritance, creating a hierarchy of classes

    • Example: Animal class can be a base class with Dog and Cat

  • Answered by AI
  • Q2. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types or classes.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
  • Q3. Write a code for string reverse
  • Ans. 

    Code to reverse a string using array of characters

    • Iterate through half of the string and swap characters from start and end

    • Use a temporary variable to store the character being swapped

    • Handle edge cases like empty string or single character string

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Brief Introduction and approach to insert tabular data in database.
  • Ans. 

    To insert tabular data in a database, use SQL INSERT statement with appropriate table and column names.

    • Use SQL INSERT statement to insert data into a table

    • Specify the table name and column names in the INSERT statement

    • Provide the values to be inserted for each column

    • Ensure the data types of values match the column types

    • Consider using prepared statements or parameterized queries for security

    • Example: INSERT INTO employee

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Analysis the problem

Skills evaluated in this interview

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

I applied via Recruitment Consultant and was interviewed in Aug 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. As per related my work

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview process is not so tough if you have fair knowledge about your domain than you can crack easily.

Software Engineer Jobs at IGT Solutions

View all

Interview questions from similar companies

I applied via Recruitment Consulltant and was interviewed before Jun 2021. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Where do we use BigInteger in java ?
  • Ans. 

    BigInteger is used for mathematical operations involving very large integers in Java.

    • BigInteger is used when the range of values supported by primitive data types like int and long is not sufficient.

    • It is commonly used in cryptography and security applications.

    • It provides methods for arithmetic, bitwise, and logical operations on large integers.

    • Example: calculating factorial of a large number, generating large prime nu

  • Answered by AI
  • Q2. Merge Sort Algo code in java
  • Ans. 

    Merge Sort Algo code in java

    • Divide the array into two halves

    • Recursively sort the two halves

    • Merge the sorted halves

    • Time complexity: O(n log n)

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Genpact Software Engineer interview:
  • Core Java
  • DSA
Interview preparation tips for other job seekers - Not a very good interview experience. I was asked 2-3 questions only. Not satisfied with interview process.

Skills evaluated in this interview

Interview Preparation Tips

Round: Resume Shortlist
Experience: This round they want to know about why do you want to leave your job?
current ctc
expected ctc
how many experience do you have on particular technology?
Tips: this round is simple you have to tell all the details of your profile and if they want this profile candidate they shortlisted you..
they want positive response, so be positive.

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

Interview Questionnaire 

3 Questions

  • Q1. Networking layers
  • Q2. Method over loading
  • Ans. 

    Method overloading is a feature in OOP where multiple methods can have the same name but different parameters.

    • Method overloading is used to improve code readability and reusability.

    • The methods must have different parameters, either in number or type.

    • Example: void print(int num), void print(String str), void print(int num1, int num2)

    • Method overloading is resolved at compile-time based on the number and type of arguments

  • Answered by AI
  • Q3. What is class
  • Ans. 

    A class is a blueprint for creating objects that have similar attributes and behaviors.

    • A class is a user-defined data type that encapsulates data and functions.

    • It provides a way to organize and structure code.

    • Objects are instances of a class.

    • Classes can inherit properties and methods from other classes.

    • Examples of classes in programming languages include String, Integer, and List.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I have attend Dxc technology as a fresher( off campus drive )

1) online aptitude question
2 ) technical Round ( face to face )
3) HR round

I applied via Naukri.com and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Easy Interview , Basic , java , spring , spring boot questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up in basics for java and spring and you are good to join this company

Interview Questionnaire 

3 Questions

  • Q1. 1,Diff bwn aggregation and composition? 2,w a p to print fibnoci sries? with recursion? 3,Diff bwn interface and abstract? 4,w ap to print * patteren? * ** *** **** 5,Explain custom immutable class? ...
  • Ans. 

    This JSON contains answers to interview questions for a Software Engineer position.

    • Aggregation and composition are both forms of association in object-oriented programming.

    • Aggregation represents a 'has-a' relationship, where one object contains another object as a part.

    • Composition is a stronger form of aggregation, where the lifetime of the contained object is controlled by the container object.

    • Fibonacci series can be ...

  • Answered by AI
  • Q2. 1,tell me about u r self? 2,what r the technologies ur worked on? 3,explain roles and responsiblities? 4,diff bwn final,finally nd finalize? 5,diff bwn bean factor ,xml bean factory and classpath bean fac...
  • Ans. 

    The interview questions cover a wide range of topics related to software engineering, including technologies worked on, roles and responsibilities, Java concepts, debugging, code review, project architecture, and more.

    • Discussing technologies worked on and roles/responsibilities showcases experience and skills.

    • Differentiating between final, finally, and finalize in Java demonstrates understanding of language nuances.

    • Exp...

  • Answered by AI
  • Q3. Salary Discussion only

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Basic questions from the resume content. Be through with the project mentioned in your resume. Also try to prepare at least one object oriented language basics.
  • Q2. I was asked questions on RADIUS TACACS Firewalls and VPN as I had mentioned network security in my resume
  • Q3. Not at all difficult just as general HR interview

Interview Preparation Tips

Round: Test
Experience: If you are applying as a fresher, you may have to appear for a test which will have basic aptitude questions on General Maths and English followed by two basic coding questions in any language like C C++ Java etc

Round: Group Discussion
Experience: Just be confident in keeping your point. Cracking this won't be that difficult.

Interview Questionnaire 

3 Questions

  • Q1. Basics questions regarding my project and about .net
  • Q2. Salary negotiation
  • Q3. Manger was giving me different scenarios of programming s

Interview Preparation Tips

Round: Resume Shortlist
Experience: I was having 1.7 yr experience and i was working on .net

IGT Solutions Interview FAQs

How many rounds are there in IGT Solutions Software Engineer interview?
IGT Solutions interview process usually has 1 rounds. The most common rounds in the IGT Solutions interview process are One-on-one Round and Technical.
How to prepare for IGT Solutions 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 IGT Solutions. The most common topics and skills that interviewers at IGT Solutions expect are Business Analysis, Auditing, Data Analysis, MS Office and Visio.
What are the top questions asked in IGT Solutions Software Engineer interview?

Some of the top questions asked at the IGT Solutions Software Engineer interview -

  1. Brief Introduction and approach to insert tabular data in databa...read more
  2. Write a code for string reve...read more
  3. What is inherita...read more

Tell us how to improve this page.

IGT Solutions Software Engineer Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more
IGT Solutions Software Engineer Salary
based on 142 salaries
₹4 L/yr - ₹15 L/yr
At par with the average Software Engineer Salary in India
View more details

IGT Solutions Software Engineer Reviews and Ratings

based on 18 reviews

3.7/5

Rating in categories

3.3

Skill development

3.1

Work-life balance

2.6

Salary

3.2

Job security

3.8

Company culture

2.6

Promotions

3.2

Work satisfaction

Explore 18 Reviews and Ratings
Process Associate
3.6k salaries
unlock blur

₹1 L/yr - ₹8.4 L/yr

Customer Service Executive
523 salaries
unlock blur

₹1 L/yr - ₹5.4 L/yr

Team Lead
324 salaries
unlock blur

₹2.4 L/yr - ₹7 L/yr

Customer Care Executive
270 salaries
unlock blur

₹1.1 L/yr - ₹7 L/yr

Quality Analyst
208 salaries
unlock blur

₹1.6 L/yr - ₹5.5 L/yr

Explore more salaries
Compare IGT Solutions with

Genpact

3.8
Compare

DXC Technology

3.7
Compare

Sutherland Global Services

3.6
Compare

Optum Global Solutions

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