Upload Button Icon Add office photos

Impelsys

Compare button icon Compare button icon Compare

Filter interviews by

Impelsys Associate Software Engineer Interview Questions and Answers

Updated 25 Oct 2024

Impelsys Associate Software Engineer Interview Experiences

2 interviews found

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

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

Round 1 - Aptitude Test 

Easy to crack. Just focus on the frequently asked topics

Round 2 - Group Discussion 

Just stay calm and put up your points also listen to others well.

Round 3 - Technical 

(2 Questions)

  • Q1. Strengths and weaknesses
  • Q2. Project and its details
  • Ans. 

    Developed a web-based project management tool for tracking tasks and deadlines.

    • Used React.js for front-end development

    • Implemented RESTful APIs using Node.js and Express

    • Utilized MongoDB for database management

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Introduction and about my resume
  • Q2. About my project and my hobbies and my approach in life

Interview Preparation Tips

Interview preparation tips for other job seekers - sdfsdfsdfsdfsfs ffdf sfsf s fsdf

I applied via Campus Placement and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Selection sort program
  • Ans. 

    Selection sort is a simple sorting algorithm that divides the input list into sorted and unsorted regions.

    • Selection sort works by repeatedly finding the minimum element from the unsorted part and moving it to the sorted part.

    • It has a time complexity of O(n^2), making it inefficient for large datasets.

    • Example: For the array [64, 25, 12, 22, 11], the first pass selects 11, resulting in [11, 25, 12, 22, 64].

    • The algorithm ...

  • Answered by AI
  • Q2. Oops concepts
  • Q3. In DBMS normalisation and keys
  • Ans. 

    DBMS normalisation and keys

    • Normalization is the process of organizing data in a database to reduce redundancy and dependency

    • Keys are used to uniquely identify a record in a table

    • Primary key is a unique identifier for a record

    • Foreign key is a field in a table that refers to the primary key of another table

    • Composite key is a combination of two or more fields that uniquely identify a record

  • Answered by AI
  • Q4. Some hr related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in oops and atleast learn one language

Skills evaluated in this interview

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
Q2. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in Accenture
Q3. Write a function to determine if a given string is a valid passwo ... read more
asked in Clarivate
Q4. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
asked in CGI Group
Q5. Frog Jump Problem Statement A frog is positioned on the first ste ... read more

Top trending discussions

View All
Interview Hub
1w
a client servicing executive
FeedCard Image
Got a question about Impelsys?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Oops concepts

I applied via Apna Jobs and was interviewed before Aug 2021. There were 4 interview rounds.

Round 1 - Coding Test 

Easy to score in coding test. 3 questions of easy medium and hard level

Round 2 - Aptitude Test 

English and aptitude test

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical interview on college project and basic ds and algo questions. Asked binary search and some questions on C++
  • Ans. I explained in detail about my college project. Starting questions were in that.
  • Answered Anonymously
Round 4 - HR 

(1 Question)

  • Q1. Nothing much just a very informal conversation about college.
  • Ans. A very casual conversation and nothing technical.
  • Answered Anonymously

Interview Preparation Tips

Topics to prepare for Credera Associate Software Engineer interview:
  • Ds and algo
  • C++
  • Java
Interview preparation tips for other job seekers - Just be confident and prepare your college project thoroughly.

I applied via Naukri.com and was interviewed before May 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

It was mixed like aptitude and from technical.

Round 2 - Technical 

(1 Question)

  • Q1. It was F2F round. Where technical questions were asked.
Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial round. It includes technical and managerial both
Round 4 - HR 

(1 Question)

  • Q1. HR round. It includes all the HR level questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be prepared with your resume content what you have mentioned

Interview Questionnaire 

1 Question

  • Q1. Different sprint ceremonies
  • Ans. 

    Sprint ceremonies are meetings held during a sprint to facilitate communication and collaboration within the team.

    • Sprint planning: where the team plans the work to be done in the upcoming sprint

    • Daily stand-up: a brief meeting where team members share progress and discuss any obstacles

    • Sprint review: a meeting where the team demonstrates the work completed during the sprint

    • Sprint retrospective: a meeting where the team r...

  • Answered by AI

Skills evaluated in this interview

Be interview-ready. Browse the most asked HR questions.
illustration image

I applied via Naukri.com and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. What do you mean by Integration, middleware, EAI systems
  • Ans. 

    Integration, middleware, and EAI systems are technologies that enable communication and data exchange between different software applications.

    • Integration involves connecting different software applications to enable data exchange and communication.

    • Middleware is software that sits between different applications and facilitates communication and data exchange.

    • EAI (Enterprise Application Integration) systems are a type of...

  • Answered by AI
  • Q2. Communication protocols - FTP SFTP
  • Q3. Basic programming logic, while loops, java diamond inheritance problem

Interview Preparation Tips

Interview preparation tips for other job seekers - Most of the questions around your integration experience. Knowledge of mulesoft not expected for beginner roles.

Skills evaluated in this interview

Are these interview questions helpful?

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

Interview Questionnaire 

2 Questions

  • Q1. What is the difference between map object and map
  • Ans. 

    Map object is an instance of Map class while map is a data structure that stores key-value pairs.

    • Map object is mutable while map is immutable

    • Map object can have any type of key while map keys are restricted to hashable types

    • Map object has methods like set(), get(), delete() while map has no such methods

    • Map object is used in object-oriented programming while map is used in functional programming

  • Answered by AI
  • Q2. Basically in the map object takes the input object and out put also return object but in the map takes input aray and return out put also aray
  • Ans. 

    Map transforms arrays, while map objects transform key-value pairs, each returning a new structure.

    • Array.map() takes an array and applies a function to each element, returning a new array. Example: [1, 2, 3].map(x => x * 2) results in [2, 4, 6].

    • Map objects (Map) store key-value pairs and allow for any data type as keys. Example: let myMap = new Map(); myMap.set('a', 1);

    • Array.map() is used for transforming data in ar...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I think if any one read carefully some interview tips online questions and answers per day than easily crack

Skills evaluated in this interview

I applied via Approached by Company and was interviewed before Sep 2021. There were 2 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 - One-on-one 

(2 Questions)

  • Q1. Basic oops concepts C# questions
  • Q2. Project related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy process just your basics should be clear. Be you & explain it properly.

I applied via Campus Placement and was interviewed before Aug 2021. There were 4 interview rounds.

Round 1 - Coding Test 

Coding cum aptitude test on Hackerrank

Round 2 - One-on-one 

(1 Question)

  • Q1. First round interview . Consisted questions based on projects , dsa
Round 3 - One-on-one 

(1 Question)

  • Q1. Round 2 . Question based from core technology. Micro services , etc
Round 4 - HR 

(1 Question)

  • Q1. Basic hr questions . Why are you fit for this role kind of things

Interview Preparation Tips

Interview preparation tips for other job seekers - Medium level interview rounds. Basic knowledge in dsa will be of a great help

Impelsys Interview FAQs

How many rounds are there in Impelsys Associate Software Engineer interview?
Impelsys interview process usually has 4 rounds. The most common rounds in the Impelsys interview process are Aptitude Test, Group Discussion and Technical.
What are the top questions asked in Impelsys Associate Software Engineer interview?

Some of the top questions asked at the Impelsys Associate Software Engineer interview -

  1. In DBMS normalisation and ke...read more
  2. Selection sort prog...read more
  3. Project and its deta...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

Less than 2 weeks 100%
View more
Software Engineer
219 salaries
unlock blur

₹4.2 L/yr - ₹10.3 L/yr

Senior Software Engineer
199 salaries
unlock blur

₹11.9 L/yr - ₹21 L/yr

Senior QA Engineer
48 salaries
unlock blur

₹8.2 L/yr - ₹15.1 L/yr

QA Engineer
44 salaries
unlock blur

₹4.5 L/yr - ₹9 L/yr

Softwaretest Engineer
44 salaries
unlock blur

₹4.1 L/yr - ₹10.3 L/yr

Explore more salaries
Compare Impelsys with

Damco Solutions

3.8
Compare

smartData Enterprises

3.2
Compare

In Time Tec Visionsoft

3.6
Compare

AgreeYa Solutions

3.2
Compare
write
Share an Interview