Upload Button Icon Add office photos
Engaged Employer

i

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

Engro Technologies Verified Tick

Compare button icon Compare button icon Compare
3.4

based on 61 Reviews

Filter interviews by

Engro Technologies Associate Software Engineer Interview Questions and Answers

Updated 22 Jan 2024

Engro Technologies Associate Software Engineer Interview Experiences

1 interview found

Associate Software Engineer Interview Questions & Answers

user image Neeraja Gayatri Varanasi

posted on 22 Jan 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself
  • Ans. Give brief intro of your exducation and why u qualify to that position
  • Answered by Neeraja Gayatri Varanasi
Round 2 - Group Discussion 

Just asked about the operators, joins triggers and procedures

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and be ready to write the code mostly they do give coding round

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Test is of 60 minutes, similar to other aptitude test

Round 2 - Technical 

(1 Question)

  • Q1. Questions based on logical building based on python

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with your basic skills, Interviewer will check your logic building only, so be calm during facing the interview
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Sep 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Write a Prime number function using C
  • Ans. 

    A function in C to check if a number is prime or not

    • Create a function that takes an integer as input

    • Check if the input number is divisible by any number from 2 to its square root

    • If it is not divisible by any number, return true (prime), else return false (not prime)

  • Answered by AI
  • Q2. Write some basic codes for Manipulation in array
  • Ans. 

    Basic codes for array manipulation including sorting, searching, and filtering.

    • Use built-in functions like sort() for sorting arrays.

    • Implement algorithms like binary search for searching in arrays.

    • Utilize filter() method for filtering arrays based on specific criteria.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, Keep calm and make sure you mentally prepared.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Coding Test 

Its was fully coding test using METTL platform in that there is only 1 session we need to attend having 6 questions all are Coding only. We don't need to complete all we can complete any of the question the time given was 1hr 30min in this i try to complete atleast 3 questions

Round 2 - Technical 

(1 Question)

  • Q1. In Technical interview they ask about Any programming language u prefer they will ask on that but most of java and paython is mandatory and more questions on java itself and about your project and all
Round 3 - HR 

(1 Question)

  • Q1. In HR round self introduction and about project discussion and they ask what they want to know about u and u r way of thinking about job

Interview Preparation Tips

Interview preparation tips for other job seekers - Its an good offer for Freshers. They are offering 7LPA and intership too with 10k stpnied
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Government College of Engineering, Aurangabad and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Mostly questions on logical aptitude

Round 2 - Technical 

(3 Questions)

  • Q1. DSA questions. Reverse word of string, bubble sort, swap two variables without use of third variable
  • Q2. OOPs concepts also some questions on project
  • Q3. 1 puzzle (refer gfg)
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to work at our company?
  • Q2. What was the toughest challenge you have ever faced?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Roles and responsibilities
  • Q2. Problem based questions
  • Q3. Code test & discussions over best practices, best solutions, time and space complexities
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Nuts and bolts game, to output date in a certain format, one SQL query

Round 2 - Technical 

(2 Questions)

  • Q1. Stacks and Queues
  • Q2. Linked lists, arrays, and many more basic fundamental Dsa questions.
Round 3 - Technical 

(2 Questions)

  • Q1. More about your resume projects.
  • Q2. Puzzles and reasoning is asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Try Puzzles on gfg, knows your projects that you have mentioned in your cv or resume, basic dsa is mostly asked with a focus on dbms.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Data structure and aptitude

Round 2 - Coding Test 

10 mins given for prepare for the problem and after completing the problem (program ) they asked to explain and asked to upgrade the program by reduce time complexity

Round 3 - Technical 

(2 Questions)

  • Q1. Topic given and want to explain
  • Q2. Reverse string without buildin funtion and for loop
  • Ans. 

    Reverse a string without using built-in functions or for loops

    • Use recursion to reverse the string

    • Pass the substring excluding the first character to the recursive function

    • Base case: return the character itself if the length of the string is 1

    • Concatenate the last character of the string with the result of the recursive call

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Introduce your self
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java and Python programming languages

    • Skilled in web development technologies like HTML, CSS, and JavaScript

    • Worked on projects involving database management with SQL

  • Answered by AI
  • Q2. Are you ok with agreement
  • Ans. 

    Yes, I am okay with agreement.

    • I am comfortable with signing agreements related to software development projects.

    • I understand the importance of agreements in protecting both parties involved in a project.

    • I am willing to review and negotiate agreements to ensure they are fair and reasonable.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be confidence
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Find in rotated sorted array
  • Ans. 

    Search for a target value in a rotated sorted array.

    • Use binary search to find the pivot point where the array is rotated.

    • Determine which half of the array the target value lies in based on the pivot point.

    • Continue binary search in the appropriate half of the array to find the target value.

  • Answered by AI
  • Q2. Design IMDB. how will you manage concurrent ratings
  • Ans. 

    Design IMDB with concurrent ratings management

    • Implement a locking mechanism to ensure only one user can update a rating at a time

    • Use a queue system to handle multiple rating requests in an orderly manner

    • Consider using distributed systems to handle high concurrency levels

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Design vehicle rental system. Api design
  • Ans. 

    Design a vehicle rental system API

    • Create endpoints for listing available vehicles, booking a vehicle, and returning a vehicle

    • Include authentication and authorization mechanisms for users and admins

    • Implement payment gateway integration for processing rental payments

    • Include features like vehicle search, filtering, and reviews/ratings

    • Consider scalability and performance optimizations for handling high traffic

  • Answered by AI

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 Oct 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Promises in javascript
  • Ans. 

    Promises in JavaScript are objects representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() to handle success and .catch() to handle errors.

  • Answered by AI

Skills evaluated in this interview

Engro Technologies Interview FAQs

How many rounds are there in Engro Technologies Associate Software Engineer interview?
Engro Technologies interview process usually has 2 rounds. The most common rounds in the Engro Technologies interview process are HR and Group Discussion.

Tell us how to improve this page.

Engro Technologies Associate Software Engineer Salary
based on 4 salaries
₹3.2 L/yr - ₹5 L/yr
32% less than the average Associate Software Engineer Salary in India
View more details

Engro Technologies Associate Software Engineer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

1.0

Work-life balance

1.0

Salary

3.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
18 salaries
unlock blur

₹6.3 L/yr - ₹13.4 L/yr

Cloud Engineer
17 salaries
unlock blur

₹3.4 L/yr - ₹9 L/yr

Software Engineer
14 salaries
unlock blur

₹4.5 L/yr - ₹10.5 L/yr

Associate Cloud Engineer
14 salaries
unlock blur

₹2.8 L/yr - ₹4.8 L/yr

Software Developer
8 salaries
unlock blur

₹4.2 L/yr - ₹5.4 L/yr

Explore more salaries
Compare Engro Technologies with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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