Upload Button Icon Add office photos

Einfochips

Compare button icon Compare button icon Compare

Filter interviews by

Einfochips Senior Software Engineer 1 Interview Questions and Answers

Updated 10 May 2023

Einfochips Senior Software Engineer 1 Interview Experiences

1 interview found

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before May 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. I had given an interview for reactjs and they asked some simple reactjs and javascript questions.
  • Q2. Some simple javascript questions relate to array, string, and object.

Interview Preparation Tips

Topics to prepare for Einfochips Senior Software Engineer 1 interview:
  • HTML
  • CSS
  • Javascript
  • React.Js
Interview preparation tips for other job seekers - There are 2 technical (Simple ReactJS and Javascript questions, also sometimes ask for HTML/CSS) + HR round (in this they will manipulate to give less salary, they will pressurize you).

Interview questions from similar companies

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

(1 Question)

  • Q1. Java, springboot, microservices
Round 2 - Coding Test 

Client interview - java coding, AWS

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Feb 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Creating a full flow of spring boot application to take input and update database

Round 2 - Technical 

(1 Question)

  • Q1. Discussion of first round code and some other technical questions including coding
Round 3 - Behavioral 

(1 Question)

  • Q1. Basic questions on your profile and behavioural questions
Round 4 - HR 

(1 Question)

  • Q1. Salary negotiations and other perks discussion
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Previous experience
Round 2 - Case Study 

Scenario based questions

I applied via Naukri.com and was interviewed in Feb 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Java 8 , Microservices, AWS

Interview Preparation Tips

Interview preparation tips for other job seekers - Java8 , Microservices, AWS, Coding

I was interviewed in Mar 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

Mcq + Data structures questions

  • Q1. 

    Maximum Sum Subarray Problem Statement

    Given an array of integers, find the maximum sum of any contiguous subarray within the array.

    Example:

    Input:
    array = [34, -50, 42, 14, -5, 86]
    Output:
    137
    Exp...
  • Ans. Brute Force Approach
    1. Create a nested loop. The outer loop will go from i = 0 to i = n - k. This will cover the starting indices of all k-subarrays
    2. The inner loop will go from j = i to j = i + k - 1. This will cover all the elements of the k-subarray starting from index i
    3. Keep track of the maximum element in the inner loop and print it.
    Space Complexity: O(1)Explanation:

    O(1) because the extra space being used (looping vari...

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 70 minutes
Round difficulty - Medium

Standard System Design round

  • Q1. Design a Doctor Appointment System and provide some test cases.
  • Ans. 

    Tip 1 : Implement using OOPs 
    Tip 2 : Try to tell your approach to the interviewer as much as you can side by side

  • Answered Anonymously
Round 3 - Video Call 

(4 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Interview of DSA + OOPS + Databse(SQL query) + Operating System

  • Q1. 

    Left View of a Binary Tree

    Given a binary tree, your task is to print the left view of the tree. The left view of a binary tree contains the nodes visible when the tree is viewed from the left side.

    Inpu...

  • Ans. Recursive Approach

    This problem can be solved through recursion.We will maintain max_level variable which will keep track of maxLevel and will pass current level in recursion as argument. Whenever we see a node whose current level is more than maxLevel then we will print that node as that will be first node for that current level. Also update maxLevel with current level.

    Space Complexity: O(n)Explanation:

    O(N), where ‘N’...

  • Answered Anonymously
  • Q2. What is the difference between CHAR and VARCHAR2 data types in SQL?
  • Q3. What are the various types of constructors in C++?
  • Q4. What is the difference between overloading and overriding?
Round 4 - HR 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

Hr round - normal hr questions + situational 

Thoughtworks community discussion

  • Q1. Why should we hire you?
  • Ans. 

    Tip 1 : Read all Thoughtworks community page and be honest


    Tip 2 : Be open-minded and answer whatever you are thinking, in these rounds I feel it is important to have opinion.


    Tip 3 : The cross-questioning can go intense sometimes, think before you speak.

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaAbove 7 CGPAThought Works interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.

Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.

Tip 3 : Do at-least 2 good projects and you must know every bit of them.


 

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.

Tip 2 : Every skill must be mentioned.

Tip 3 : Focus on skills, projects and experiences more.


 

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jun 2021. 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 - Technical 

(7 Questions)

  • Q1. What is the difference between List and Tuple?
  • Ans. 

    List is mutable and Tuple is immutable in Python.

    • List can be modified after creation while Tuple cannot be modified.

    • List uses square brackets [] while Tuple uses parentheses ().

    • List is used for homogenous data while Tuple is used for heterogenous data.

    • List is slower than Tuple in terms of performance.

    • Example of List: [1, 2, 3] and Example of Tuple: (1, 'hello', 3.14)

  • Answered by AI
  • Q2. What is __init__ ? Follow up question why is __ (double underscore) used?
  • Q3. A SQL query based on group by and order by DESC LIMIT 1 in order to fetch highest row of a group in a dataset given by panelist.
  • Q4. A simple query on SQL using group by and aggregate function.
  • Q5. Panelist asked about my previous work experience and projects I worked upon earlier and the technologies used.
  • Q6. Question on how do we create table using SQL Alchemy in Flask (since I had used Python Flask in one of my previous projects and had highlighted it pretty well on my resume).
  • Q7. How is memory managed in Python?
  • Ans. 

    Python uses automatic memory management through garbage collection.

    • Python uses reference counting to keep track of memory usage.

    • When an object's reference count drops to zero, it is deleted.

    • Python also uses a garbage collector to handle circular references.

    • Memory allocation is handled by the Python memory manager.

    • Python provides tools like the 'gc' module for managing memory usage.

  • Answered by AI
Round 3 - Technical 

(5 Questions)

  • Q1. Question on List operation.
  • Q2. Do you know numpy pandas?
  • Ans. 

    Yes, numpy and pandas are Python libraries used for data analysis and manipulation.

    • NumPy is used for numerical operations on arrays and matrices.

    • Pandas is used for data manipulation and analysis, providing data structures like DataFrame.

    • Both libraries are commonly used in data science and machine learning.

    • Example: import numpy as np; import pandas as pd;

  • Answered by AI
  • Q3. A question to count number of times a letter occurs in a sentence and then also find the maximum occurring letter.
  • Q4. Difference between generator and iterator?
  • Ans. 

    Generator generates values on the fly while iterator iterates over a collection of values.

    • Generator is a function that returns an iterator.

    • Generators use 'yield' keyword to return values one at a time.

    • Iterators are objects that implement the 'next' method to return the next value in a collection.

    • Iterators can be created from arrays, strings, maps, sets, etc.

    • Generators are useful for generating large sequences of values...

  • Answered by AI
  • Q5. What is the selling point about you why should we consider you over other candidate?
Round 4 - HR 

(2 Questions)

  • Q1. Why are you looking for a change?
  • Q2. What are your salary expectations?

Interview Preparation Tips

Topics to prepare for Tiger Analytics Senior Software Engineer interview:
  • Python
  • SQL
  • Logic Building
  • Numpy
  • Pandas
Interview preparation tips for other job seekers - Be honest about what you know and what you don't. Prepare your resume very well highlighting your best projects and keep good knowledge about them. Search for common interview questions asked for the role you are applying. Practice coding questions over coding platforms whichever you like , if required (depends on the role you are applying for)

Skills evaluated in this interview

I was interviewed in Feb 2022.

Round 1 - Technical 

(1 Question)

  • Q1. About spark and hive,hdfs
Round 2 - Technical 

(1 Question)

  • Q1. Spark and hive ,hdfs
Round 3 - Group Discussion 

Project explanation

Round 4 - HR 

(1 Question)

  • Q1. As usual everywhere similar question

Interview Preparation Tips

Topics to prepare for Iris Software Senior Software Engineer interview:
  • Spark
  • Hive
Interview preparation tips for other job seekers - Nice experience with interview

I applied via Naukri.com and was interviewed in Oct 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Question around current projects
  • Q2. Question related to used technologies

Interview Preparation Tips

Interview preparation tips for other job seekers - Explains about your projects properly. Technologies used. How you used where you used etc...
Round 1 - Technical 

(1 Question)

  • Q1. Explain projects you worked on

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and work through the thought process

Einfochips Interview FAQs

How many rounds are there in Einfochips Senior Software Engineer 1 interview?
Einfochips interview process usually has 2 rounds. The most common rounds in the Einfochips interview process are Resume Shortlist and Technical.
What are the top questions asked in Einfochips Senior Software Engineer 1 interview?

Some of the top questions asked at the Einfochips Senior Software Engineer 1 interview -

  1. I had given an interview for reactjs and they asked some simple reactjs and jav...read more
  2. some simple javascript questions relate to array, string, and obje...read more

Tell us how to improve this page.

Einfochips Senior Software Engineer 1 Interview Process

based on 3 interviews

Interview experience

3.3
  
Average
View more
Einfochips Senior Software Engineer 1 Salary
based on 12 salaries
₹8.2 L/yr - ₹19 L/yr
33% less than the average Senior Software Engineer 1 Salary in India
View more details

Einfochips Senior Software Engineer 1 Reviews and Ratings

based on 7 reviews

3.2/5

Rating in categories

3.1

Skill development

3.4

Work-life balance

3.2

Salary

3.5

Job security

2.9

Company culture

2.3

Promotions

3.0

Work satisfaction

Explore 7 Reviews and Ratings
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