Upload Button Icon Add office photos

Einfochips

Compare button icon Compare button icon Compare

Filter interviews by

Einfochips Trainee Interview Questions and Answers

Updated 21 Sep 2022

Einfochips Trainee Interview Experiences

1 interview found

Trainee Interview Questions & Answers

user image Sneha Bharti

posted on 21 Sep 2022

I applied via Campus Placement and was interviewed in Aug 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 

My selection was on-campus.
1st round was Aptitude test in which we had around 60 MCQs from different topic like OS, Networking and Data Structure.
Time Duration was 60 minutes.
They were short of easy and medium to answer.

Round 3 - Technical 

(2 Questions)

  • Q1. Third round was technical round in which I was asked to introduce myself and my expertise in any one programming language. Then interviewer asked to share screen and asked to write code using pointer in C...
  • Q2. Run time polymorphism code copy constructor code in C++ difference between Java and C++ diff bw JDK, JRE and JVM
  • Ans. 

    Questions on C++ and Java programming languages

    • Run time polymorphism is achieved through virtual functions in C++

    • Copy constructor is used to create a new object as a copy of an existing object in C++

    • Java is an object-oriented programming language while C++ is a hybrid language

    • JDK stands for Java Development Kit, JRE stands for Java Runtime Environment, and JVM stands for Java Virtual Machine

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. This started with intro. Problems u faced in ur last project how will you handle stress

Interview Preparation Tips

Interview preparation tips for other job seekers - Everything was easy not so difficult and interviewers were friendly.
As a fresher u need to sign a bond of 3 yrs

Skills evaluated in this interview

Interview questions from similar companies

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
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. Revenue recognition
  • Q2. Debit, credit rules
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Was a bit difficult, would suggest preparing thoroughly for aptitude and reasoning .

Round 2 - Technical 

(2 Questions)

  • Q1. Basic questions from resume, few basic questions from DSA. How to remove duplicates from an array.
  • Q2. Java oops related questions and one coding question
Round 3 - HR 

(1 Question)

  • Q1. This was the easiest of all, interviewer asked generic hr questions.
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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 Coding rounds with medium difficulty questions

Round 2 - Code Pairing 

(1 Question)

  • Q1. Given a problem statement and you pair with interviewer to solve it in real time
Round 3 - One-on-one 

(1 Question)

  • Q1. Technical interview mostly based on your experiences and language mentioned in the resume
Round 4 - HR 

(1 Question)

  • Q1. Cultural alignment round , who you see social change around you
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
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

I applied via Campus Placement and was interviewed in Jun 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Oops-general theory questions C++
  • Q2. Palindrome number program in c++
  • Ans. 

    Palindrome number program in C++

    • A palindrome number is a number that remains the same when its digits are reversed

    • To check if a number is palindrome, we can compare the original number with its reverse

    • We can use a loop to reverse the number and then compare it with the original number

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

    Polymorphism is the ability of an object to take on many forms.

    • Polymorphism allows objects of different classes to be treated as if they are of the same class.

    • It can be achieved through method overloading or method overriding.

    • Example: A shape class can have different subclasses like circle, square, etc. and all can be treated as shapes.

    • Polymorphism helps in achieving code reusability and flexibility.

  • Answered by AI
  • Q4. What is abstraction
  • Ans. 

    Abstraction is the process of hiding complex implementation details and exposing only necessary information.

    • Abstraction allows us to focus on the essential features of an object or system.

    • It helps in reducing complexity and increasing efficiency.

    • Examples of abstraction include encapsulation, inheritance, and interfaces in object-oriented programming.

    • Abstraction is used in various fields such as software engineering, ma

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All good.general tech interview questions.if u prepare moderately for tech interviews you should be good to go

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. OOPS concepts, DBMS basics

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn the basic concepts thoroughly as the time is limited and in depth questions are not asked.

Einfochips Interview FAQs

How many rounds are there in Einfochips Trainee interview?
Einfochips interview process usually has 4 rounds. The most common rounds in the Einfochips interview process are Resume Shortlist, Aptitude Test and Technical.
What are the top questions asked in Einfochips Trainee interview?

Some of the top questions asked at the Einfochips Trainee interview -

  1. Run time polymorphism code copy constructor code in C++ difference between Java...read more
  2. Third round was technical round in which I was asked to introduce myself and my...read more

Tell us how to improve this page.

Trainee Interview Questions from Similar Companies

TCS Trainee Interview Questions
3.7
 • 59 Interviews
Wipro Trainee Interview Questions
3.7
 • 39 Interviews
Infosys Trainee Interview Questions
3.6
 • 15 Interviews
View all
Einfochips Trainee Salary
based on 9 salaries
₹3.6 L/yr - ₹5 L/yr
66% more than the average Trainee Salary in India
View more details

Einfochips Trainee Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Engineer
236 salaries
unlock blur

₹3 L/yr - ₹12.3 L/yr

Senior Engineer
193 salaries
unlock blur

₹7.4 L/yr - ₹26.5 L/yr

Senior Software Engineer
189 salaries
unlock blur

₹6 L/yr - ₹25 L/yr

Technical Lead
156 salaries
unlock blur

₹10 L/yr - ₹31.9 L/yr

Software Engineer
135 salaries
unlock blur

₹2.8 L/yr - ₹12 L/yr

Explore more salaries
Compare Einfochips 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