Upload Button Icon Add office photos

Filter interviews by

NaviSite Associate Consultant Interview Questions and Answers

Updated 13 May 2023

NaviSite Associate Consultant Interview Experiences

1 interview found

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

I applied via Referral and was interviewed before May 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

Basic Math questions

Round 3 - Technical 

(1 Question)

  • Q1. Basic questions on DBMS and Project discussion.
Round 4 - Group Discussion 

Group discussion on Topics like economy, world politics etc

Round 5 - HR 

(1 Question)

  • Q1. Salary negotiaterred preferred location etc

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. First-round is the technical round and aptitude which is an online test logical question is a more technical question related to C# coding one question and others are about OOPS and all SQL question like ...

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

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
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Written test on Basics of c and c++ is asked.
Also be thorough with mathematical topics like vectors,calculus.

Round 3 - Technical 

(2 Questions)

  • Q1. C++ basic questions Oops concepts
  • Q2. Math questions on vectors and calculus Predict the output for a given program

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and strong at basics of C/C++.
They also value your communication skills as well.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Find repeated nos in arrays
  • Ans. 

    Find repeated numbers in arrays of strings

    • Iterate through each string in the array

    • Convert each string to an array of numbers

    • Use a hash map to track the frequency of each number

    • Identify and return the repeated numbers

  • Answered by AI
Round 2 - Behavioral 

(1 Question)

  • Q1. Current company work, reason for change, etc.

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Project based backend and frontend
  • Q2. How to connect to backend
  • Ans. 

    To connect to the backend, you can use APIs, database connections, or web services.

    • Use APIs to send and receive data between the frontend and backend

    • Establish database connections to retrieve and store data

    • Utilize web services for communication between different systems

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for project

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Oct 2022. There were 3 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 

(2 Questions)

  • Q1. Difference between pull and push
  • Ans. 

    Pull is when the client initiates the request for data, while push is when the server sends data without a request.

    • Pull: Client initiates request for data

    • Push: Server sends data without request

    • Pull: Used in polling mechanisms

    • Push: Used in real-time communication systems

  • Answered by AI
  • Q2. Difference between pull and fetch
  • Ans. 

    Pull and fetch are both Git commands used to update a local repository with changes from a remote repository, but they have different behaviors.

    • Pull: updates the current branch with changes from the remote repository and merges them into the local branch.

    • Fetch: downloads changes from the remote repository to the local repository, but does not merge them into the local branch.

    • Pull is a combination of fetch and merge, wh...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Where you see yourself in next five years

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(3 Questions)

  • Q1. Related the profile they asked about .Net , c#, linq, sqlserver, UI. related topics answer they will ask.
  • Q2. Manager will ask about your project and experience.
  • Q3. Answer them about your worked projects and project experience.
Round 2 - HR 

(1 Question)

  • Q1. HR will discuss your salary and expected salary.

Interview Preparation Tips

Interview preparation tips for other job seekers - If you want to work in this company please make mind i can do work till late night.

I applied via Naukri.com and was interviewed in Mar 2022. There were 2 interview rounds.

Round 1 - Technical 

(6 Questions)

  • Q1. What is Django request response cycle.?
  • Ans. 

    Django request response cycle is the process of handling a request and generating a response in Django web framework.

    • Client sends a request to the server.

    • The request is received by the Django server.

    • Django uses URL patterns to match the requested URL to a view function.

    • The view function processes the request and returns an HTTP response.

    • The response is sent back to the client.

  • Answered by AI
  • Q2. What is django signals?
  • Ans. 

    Django signals allow certain senders to notify a set of receivers that some action has taken place.

    • Signals allow decoupled applications to get notified when certain actions occur elsewhere in the application

    • They are used to avoid coupling between applications

    • Signals are defined by providing a receiver function which gets called when the signal is sent

    • Example: A signal can be sent when a new user is created, and a recei...

  • Answered by AI
  • Q3. Difference between list and tuple, list and array.
  • Ans. 

    Lists and tuples are similar but tuples are immutable. Arrays are fixed size while lists are dynamic.

    • Lists and tuples are both used to store collections of data.

    • Tuples are immutable, meaning their values cannot be changed once created.

    • Lists are dynamic and can be resized during runtime.

    • Arrays are fixed size and can only store elements of the same data type.

    • Lists and arrays can be indexed and sliced to access specific e...

  • Answered by AI
  • Q4. How to define private variables ?
  • Ans. 

    Private variables are defined using access modifiers to restrict their access within a class.

    • Use the 'private' keyword to define a private variable

    • Private variables can only be accessed within the class they are defined in

    • Private variables are often used to encapsulate data and prevent direct access from outside the class

  • Answered by AI
  • Q5. Oops concept, and 4 pillars of oops.
  • Ans. 

    Oops concept is a programming paradigm based on the principles of abstraction, encapsulation, inheritance, and polymorphism.

    • Abstraction: Hiding the implementation details and showing only the necessary information to the user.

    • Encapsulation: Binding the data and methods together to protect the data from outside interference.

    • Inheritance: Creating a new class from an existing class to reuse the code and add new features.

    • P...

  • Answered by AI
  • Q6. What is decorator. ?
  • Ans. 

    A decorator is a design pattern that allows behavior to be added to an individual object, either statically or dynamically.

    • Decorators wrap an object to modify its behavior.

    • They provide a flexible alternative to subclassing for extending functionality.

    • Python has built-in support for decorators, which are denoted by the @ symbol.

    • Examples of decorators include @staticmethod, @classmethod, and @property.

  • Answered by AI
Round 2 - Coding Test 

1.Reverse a list
2.find pairs from a list sum of which is equal to an integer k.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident. And clear your basics. End to end of REST api is important.

Skills evaluated in this interview

NaviSite Interview FAQs

How many rounds are there in NaviSite Associate Consultant interview?
NaviSite interview process usually has 5 rounds. The most common rounds in the NaviSite interview process are Aptitude Test, Technical and Group Discussion.
How to prepare for NaviSite Associate Consultant interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at NaviSite. The most common topics and skills that interviewers at NaviSite expect are Analytical skills, Asset Management, Excel, Licensing and MIS Preparation.
What are the top questions asked in NaviSite Associate Consultant interview?

Some of the top questions asked at the NaviSite Associate Consultant interview -

  1. Basic questions on DBMS and Project discussi...read more
  2. Salary negotiaterred preferred location ...read more

Tell us how to improve this page.

NaviSite Associate Consultant Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Apisero Interview Questions
4.3
 • 65 Interviews
TestingXperts Interview Questions
3.9
 • 41 Interviews
Credera Interview Questions
3.8
 • 40 Interviews
Damco Solutions Interview Questions
3.9
 • 38 Interviews
Stefanini Interview Questions
2.9
 • 35 Interviews
View all
NaviSite Associate Consultant Salary
based on 21 salaries
₹3.6 L/yr - ₹8.3 L/yr
50% less than the average Associate Consultant Salary in India
View more details

NaviSite Associate Consultant Reviews and Ratings

based on 5 reviews

2.3/5

Rating in categories

2.3

Skill development

2.9

Work-life balance

3.6

Salary

2.3

Job security

1.9

Company culture

1.3

Promotions

2.3

Work satisfaction

Explore 5 Reviews and Ratings
Senior Consultant
113 salaries
unlock blur

₹9.6 L/yr - ₹31 L/yr

Consultant
74 salaries
unlock blur

₹6.1 L/yr - ₹22.2 L/yr

Engineer
64 salaries
unlock blur

₹4 L/yr - ₹8.5 L/yr

Senior Engineer
61 salaries
unlock blur

₹6 L/yr - ₹20.1 L/yr

Lead Consultant
24 salaries
unlock blur

₹15.8 L/yr - ₹33 L/yr

Explore more salaries
Compare NaviSite with

Apisero

4.3
Compare

Impelsys

3.5
Compare

LatentView Analytics

3.7
Compare

In Time Tec Visionsoft

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