Upload Button Icon Add office photos
Engaged Employer

i

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

Infogain Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 1.1k Reviews

Filter interviews by

Infogain Internship Trainee Interview Questions and Answers

Updated 2 Jan 2023

Infogain Internship Trainee Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(2 Questions)

  • Q1. What are your skills
  • Q2. Some Java basic qns like oops concepts etc.
Round 3 - Aptitude Test 

Reasoning,Numericalquantative ability

Round 4 - HR 

(2 Questions)

  • Q1. What is your expected ctc
  • Ans. 

    I am open to negotiation based on the company's policies and industry standards.

    • I am looking for a fair compensation package that aligns with my skills and experience.

    • I have researched the industry standards and the company's policies to have a realistic expectation.

    • I am open to discussing the salary and benefits package during the interview process.

    • I am more interested in gaining valuable experience and learning oppor

  • Answered by AI
  • Q2. Why should i hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - Be attentive and tell the answers that you know.
Tell them that you don't know if you are not comfortable.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Campus Placement and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was simple apti and coding test
some apti questions and 2 coding

Round 2 - Technical 

(1 Question)

  • Q1. Basic OOPs related Java related questions as I told them I am proficient in Java
Round 3 - HR 

(1 Question)

  • Q1. Just normal discussion
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Bannari Amman Institute of Technology, Sathyamangalam and was interviewed before Aug 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

Normal General Appti

Round 2 - Coding Test 

In font of Hrs Easy Questions

Round 3 - Technical 

(1 Question)

  • Q1. Nothing but a single coding question in sofa with Hr
Round 4 - HR 

(1 Question)

  • Q1. About family and are you okay with Bond

Interview Preparation Tips

Interview preparation tips for other job seekers - Go with confidence
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic questions on oops and sql queries

Round 2 - Technical 

(2 Questions)

  • Q1. SQL Query on many to many table and aggregations
  • Q2. OOPS concepts and SpringBoot
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Oops concepts, Encapsulation, Abstraction in detail with example
  • Q2. Types of beans in Java
  • Ans. 

    Java has two types of beans: stateful and stateless beans.

    • Stateful beans maintain conversational state with the client, while stateless beans do not.

    • Stateful beans are typically used for long-running conversations, while stateless beans are used for short-lived operations.

    • Examples of stateful beans include session beans, while examples of stateless beans include message-driven beans.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Code to sort an Array in ascending order
  • Ans. 

    Use a sorting algorithm like bubble sort or quicksort to arrange elements in ascending order.

    • Use a sorting algorithm like bubble sort, quicksort, or merge sort to rearrange elements in ascending order.

    • For example, you can implement bubble sort to compare adjacent elements and swap them if they are in the wrong order.

    • Another example is using quicksort to divide the array into smaller subarrays and recursively sort them.

  • Answered by AI
  • Q2. Find the second greatest number in an array
  • Ans. 

    Iterate through the array to find the second greatest number.

    • Iterate through the array and keep track of the greatest and second greatest numbers.

    • Compare each element with the current greatest and second greatest numbers.

    • Update the second greatest number if a new number is found that is greater than the current second greatest but less than the greatest.

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Let us assume we have an array of 0's and 1's,how would you find the first index for 1.
  • Ans. 

    Iterate through the array and return the index of the first occurrence of 1.

    • Iterate through the array using a loop.

    • Check each element of the array, if it is 1 then return its index.

    • If no 1 is found, return -1.

  • Answered by AI
  • Q2. SQL queries related to Order By and Group By

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on the basics.

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. First online assessment. Fundamental question from all computer science subjects.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for your projects very well. First elimination round in Technical interview is Project Round. Interviewer will ask you questions from your project in very detail.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Self introduction

Interview Preparation Tips

Topics to prepare for Apexon Trainee interview:
  • Prepare one topic
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Campus Placement and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was simple apti and coding test
some apti questions and 2 coding

Round 2 - Technical 

(1 Question)

  • Q1. Basic OOPs related Java related questions as I told them I am proficient in Java
Round 3 - HR 

(1 Question)

  • Q1. Just normal discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Aptitude Test 

Coding C amd Apptitude

Round 2 - Technical 

(2 Questions)

  • Q1. String Reverse without predefined methods
  • Ans. 

    Reverse a string without using predefined methods

    • Iterate through the string from end to start and append each character to a new string

    • Use a temporary variable to swap characters from start to end until reaching the middle

    • Alternatively, convert the string to an array of characters, reverse the array, then join it back into a string

  • Answered by AI
  • Q2. Pattern programs
Round 3 - HR 

(2 Questions)

  • Q1. General discussion about family
  • Q2. Get to know the relocate

Skills evaluated in this interview

Infogain Interview FAQs

How many rounds are there in Infogain Internship Trainee interview?
Infogain interview process usually has 4 rounds. The most common rounds in the Infogain interview process are Resume Shortlist, One-on-one Round and Aptitude Test.
What are the top questions asked in Infogain Internship Trainee interview?

Some of the top questions asked at the Infogain Internship Trainee interview -

  1. What is your expected ...read more
  2. Some Java basic qns like oops concepts e...read more

Tell us how to improve this page.

Infogain Internship Trainee Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Software Engineer
1.3k salaries
unlock blur

₹2.5 L/yr - ₹10.5 L/yr

Development Consultant
800 salaries
unlock blur

₹5.5 L/yr - ₹20 L/yr

Technical Lead
570 salaries
unlock blur

₹10.6 L/yr - ₹38 L/yr

Consultant
464 salaries
unlock blur

₹5.5 L/yr - ₹19.3 L/yr

Senior Consultant
374 salaries
unlock blur

₹7 L/yr - ₹28 L/yr

Explore more salaries
Compare Infogain with

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Tech Mahindra

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