Upload Button Icon Add office photos

Filter interviews by

Navarro Associate Software Engineer Interview Questions and Answers

Updated 11 Apr 2024

Navarro Associate Software Engineer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

English isht and aptitude test

Round 2 - Coding Test 

Then 5 coding ques 3 easy 2 hight level optional for good package

Round 3 - Technical 

(2 Questions)

  • Q1. Loop in linked list
  • Ans. 

    Loop in linked list is a situation where a node points to a previous node, creating a cycle.

    • To detect a loop in a linked list, we can use Floyd's Cycle Detection Algorithm.

    • We can use two pointers, one moving at twice the speed of the other. If they meet at some point, there is a loop.

    • Example: 1 -> 2 -> 3 -> 4 -> 2 (loop back to 2)

  • Answered by AI
  • Q2. Array sorting and binary search
Round 4 - HR 

(2 Questions)

  • Q1. Expecting salary
  • Q2. Background questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Too much bench strength less projects

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Regarding my College project.
  • Q2. Why Tech Mahindra.

I applied via Company Website and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical IT field qns

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't be scared of HR and TR it's their job to pick you .

I applied via Amcat and was interviewed before Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. About your college project
  • Q2. About technical project that was mentioned in my resume
  • Q3. Tell me about yourself
  • Q4. Some SQL queries
  • Q5. So I had mentioned banking application project in resume so the question was , if you need to credit your salary into a bank account that how would you show salary in account.... Using SQL
  • Q6. Core java questions, collections, inheritance etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Frist thing is, it was not my first interview but in MNC it was my first experience. Usually in MNC interviewer does not ask technical question, but in tech mahindra it is not applicable. Most of the question were technical. Interviewer was very polite to me. I had never experience this type of interview, after 1 or 2 question, I was happy to answer the all questions. My interview lasted for about 20-30min . Mostly they want to check project knowledge. All the technical question were around project releted.

I applied via Campus Placement and was interviewed before Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. The skills that I have mentioned in the resume, I Have mentioned java , html , sql, python

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good and quite in nature

I applied via Campus Placement and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Easy noy really tough to be honest

Round 2 - Technical 

(1 Question)

  • Q1. Uses of turbine and types of turbinew
  • Ans. 

    Turbines are used to convert kinetic energy into mechanical energy. There are various types of turbines such as steam, gas, and hydraulic.

    • Turbines are used in power generation, aviation, and marine propulsion.

    • Steam turbines are used in thermal power plants to generate electricity.

    • Gas turbines are used in aircraft engines and power plants.

    • Hydraulic turbines are used in hydroelectric power plants.

    • Wind turbines are used t...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be cool go for it keep a neat attitude.Preapre aptitude reasoning qnd general engliah

I applied via Company Website and was interviewed before Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I have asked questions on my Engineering Project. And also I asked to write prime number program.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please give the brief explanation on your Final project. Explain What technologies yused in this project. Also you can overview basic programming like prime number, febonacci series etc.. and try to write your own way or own logic.. you should have logically cleared. And overview the oops concepts. And core Java concepts.
All the best 👍

I applied via NQT and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About skills , hobby , past company experience

Interview Preparation Tips

Interview preparation tips for other job seekers - some question related with some real life situations like if networks goes then how could you communicate with your manager...

I appeared for an interview before Nov 2020.

Round 1 - Coding Test 

(6 Questions)

Round duration - 360 minutes
Round difficulty - Medium

They give you 6 hr. For 6 question but the good part is that you need to complete atleast 1 question and you are good to go.
Round will be cleared only after attempting one question and rest of the questions are for improving your rank.

  • Q1. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. 

    Find pairs of elements in an array that sum up to a given value, sorted in a specific order.

    • Iterate through the array and for each element, check if the complement (S - current element) exists in a hash set.

    • If the complement exists, add the pair to the result list.

    • Sort the result list based on the criteria mentioned in the problem statement.

  • Answered by AI
  • Q2. 

    Minimum Number of Platforms Needed Problem Statement

    You are given the arrival and departure times of N trains at a railway station for a particular day. Your task is to determine the minimum number of pl...

  • Ans. 

    The task is to determine the minimum number of platforms needed at a railway station based on arrival and departure times of trains.

    • Sort the arrival and departure times in ascending order.

    • Use two pointers to keep track of overlapping schedules.

    • Increment platform count when a new train arrives before the previous one departs.

  • Answered by AI
  • Q3. 

    Minimise Sum Problem Statement

    You are given a matrix of 'N' rows and 'M' columns and a non-negative integer 'K'. Determine the minimum possible sum of all elements in each submatrix after performing at m...

  • Ans. 

    Given a matrix and a non-negative integer K, find the minimum possible sum of all elements in each submatrix after performing at most K decrements.

    • Iterate through all submatrices and find the minimum possible sum after performing decrements

    • Keep track of the number of decrements performed on each element

    • Use dynamic programming to optimize the solution

    • Ensure not to decrease any number below 0

    • Return the minimum possible s

  • Answered by AI
  • Q4. 

    Chocolate Distribution Problem

    You are given an array/list CHOCOLATES of size 'N', where each element represents the number of chocolates in a packet. Your task is to distribute these chocolates among 'M'...

  • Ans. 

    Distribute chocolates among students to minimize the difference between the largest and smallest number of chocolates.

    • Sort the array of chocolates packets.

    • Use sliding window technique to find the minimum difference between the largest and smallest packets distributed to students.

    • Consider edge cases like when number of students is equal to number of packets.

  • Answered by AI
  • Q5. 

    Prime Time Again Problem Statement

    You are given two integers DAY_HOURS and PARTS. Consider a day with DAY_HOURS hours, which can be divided into PARTS equal parts. Your task is to determine the total ins...

  • Ans. 

    Calculate total instances of equivalent prime groups in a day divided into equal parts.

    • Divide the day into equal parts and find prime numbers in each part.

    • Identify prime groups where prime numbers occur at the same position in different parts.

    • Count the total instances of equivalent prime groups.

    • Ensure each hour in a prime group is in a different part of the day.

  • Answered by AI
  • Q6. 

    Constellation Identification Problem

    Given a matrix named UNIVERSE with 3 rows and 'N' columns, filled with characters {#, *, .}, where:

    • '*' represents stars.
    • '.' represents empty space.
    • '#' repre...
  • Ans. 

    The task is to identify constellations shaped like vowels within a matrix filled with characters {#, *, .}.

    • Iterate through the matrix to find 3x3 constellations shaped like vowels.

    • Check for vowels 'A', 'E', 'I', 'O', 'U' in each 3x3 constellation.

    • Print the vowels found in each constellation for each test case.

  • Answered by AI
Round 2 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Associate Software Engineer in MumbaiEligibility criteriaAbove 7 cgpaTata Consultancy Services (TCS) interview preparation:Topics to prepare for the interview - Data Structures, Python, Operating System, Algorithms, DBMSTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : learn basics
Tip 2 : learn any oops language and practice.
Tip 3 : code as much as you can.

Application resume tips for other job seekers

Tip 1 : short and precise. Upto the point.
Tip 2 : keep few things aside from resume

Final outcome of the interviewSelected

Skills evaluated in this interview

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

Round 1 - Aptitude Test 

Quantitative logical and English plus computer fundamental MCQs

Round 2 - Coding Test 

Two coding questions

Round 3 - Technical 

(1 Question)

  • Q1. Projects Programming Cloud
Round 4 - HR 

(2 Questions)

  • Q1. Tell me about yourself?
  • Q2. Why join the accenture?

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice the Aptitude questions and IT fundamentals
Brief knowledge about your project and what technology stack used to build the project
Cloud computing basics and AI basics

Navarro Interview FAQs

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

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

  1. Loop in linked l...read more
  2. Array sorting and binary sea...read more
  3. Background questi...read more

Tell us how to improve this page.

Navarro Associate Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Compare Navarro with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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