Upload Button Icon Add office photos
Engaged Employer

i

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

Walking Tree Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Walking Tree Assistant Manager Interview Questions and Answers

Updated 8 Mar 2022

Walking Tree Assistant Manager Interview Experiences

1 interview found

I applied via Approached by Company and was interviewed in Sep 2021. There was 1 interview round.

Round 1 - HR 

(8 Questions)

  • Q1. Tell me about yourself.
  • Q2. What are your strengths and weaknesses?
  • Q3. Where do you see yourself in 5 years?
  • Q4. Why are you looking for a change?
  • Q5. Why should we hire you?
  • Q6. Share details of your previous job.
  • Q7. What is your family background?
  • Q8. What are your salary expectations?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and clear and focused should be intact

Top trending discussions

View All
Engineering - Software & QA
2w
a senior software engineer
.NET's Future & Senior Dev Salary Trends
I'm a Full Stack .NET Dev with 6+ years of experience. Seeing a lot of posts on LinkedIn saying .NET (especially .NET Core) might get replaced by stacks like Java/Spring or Python/Django or Next soon. What's the typical salary range in India for someone with my experience right now? Would love some insights from the community! Also, how can I stay ahead of the competition?
Got a question about Walking Tree?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Walk-in and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test

Round 2 - Group Discussion 

Current affairs

Round 3 - Technical 

(1 Question)

  • Q1. Puzzle , sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, whatever you know just be confident

Assistant Manager Interview Questions Asked at Other Companies

asked in Axis Bank
Q1. If you are handling cash operations, how would you manage operati ... read more
asked in JSW Steel
Q2. 1. Whats is Cooling tower performance aspects, Vacuume breaker us ... read more
asked in Jio
Q3. What are the different layers of the OSI model?
asked in Axis Bank
Q4. How would you convince a widow with existing savings to purchase ... read more
asked in Axis Bank
Q5. If a valued customer urgently needs to withdraw funds without a c ... read more

Interview Preparation Tips

Round: Technical Interview
Experience: this was a telephonic round : There I was asked basics of web development (e.g Session, hidden variable difference between POST and GET etc. ) and basics of PHP e.g global variables etc , little bit of mysql e.g joins , difference between left and right joins.

Round: Technical Interview
Experience: This was pretty much about interview rounds. I got the offer.

Skills: Core java, OOP, PHP
College Name: na

I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. How to implement Sqlite database in React Native?
  • Q2. What are generator functions?
  • Ans. 

    Generator functions are functions that can be paused and resumed, allowing for lazy evaluation of data.

    • Generator functions use the yield keyword to pause execution and return a value.

    • They can be used to generate an infinite sequence of values.

    • They are memory efficient as they only generate values when needed.

    • Example: function* myGenerator() { yield 1; yield 2; yield 3; }

    • Example: const infiniteGenerator = function*() { ...

  • Answered by AI
  • Q3. How to implement push notifications in Android and iOS?
  • Ans. 

    Push notifications can be implemented in Android and iOS using Firebase Cloud Messaging (FCM) and Apple Push Notification service (APNs) respectively.

    • For Android, integrate FCM SDK in the app and use FCM console to send notifications.

    • For iOS, create an APNs certificate, configure the app to receive notifications, and use APNs to send notifications.

    • Both platforms require handling of notification payload in the app to di...

  • Answered by AI
  • Q4. How do you use in your last app?
  • Ans. 

    I used React Native for my last app.

    • Developed UI components using React Native

    • Integrated APIs to fetch and display data

    • Implemented Redux for state management

    • Used Firebase for authentication and database

    • Optimized app performance using React Native Debugger

  • Answered by AI
  • Q5. What is the difference between functional components and non functional components?
  • Ans. 

    Functional components are stateless and return UI elements based on input props, while non-functional components have state and can change UI based on user interaction.

    • Functional components are simpler and easier to test than non-functional components.

    • Non-functional components can have state and lifecycle methods, while functional components cannot.

    • Examples of functional components include buttons, labels, and icons, w...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Its Hard and requires deep knowledge of your technical skills.

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. SOLID principles examples in depth,given to design user management database in sql(just flow diagram,and in which table which value is used),some basic c# questions related to how you log in c#
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. What is Optional chaining ?
  • Ans. 

    Optional chaining allows safe access to deeply nested object properties without causing runtime errors if a property is undefined or null.

    • Prevents runtime errors when accessing properties of an object that may not exist.

    • Syntax: Use the '?' operator before accessing a property, e.g., obj?.property.

    • Example: const name = user?.profile?.name; // returns undefined if user or profile is null.

    • Can be used with function calls: ...

  • Answered by AI
  • Q2. What is Debouncing?
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Google and was interviewed in Aug 2023. There were 4 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 

Coding questions about array and string.

Round 3 - Coding Test 

Cosing questions about sql and ds.

Round 4 - HR 

(1 Question)

  • Q1. Personal and behavioral questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with the fundamentals.
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Coding Test 

Easy to medium leetcode questions

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
No response

I appeared for an interview in Nov 2024, where I was asked the following questions.

  • Q1. Tell me about your self
  • Q2. Write a for palindrome
  • Q3. SQL inner Joins
  • Q4. Object orientend programming
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Walk-in

Round 1 - Technical 

(2 Questions)

  • Q1. How make a queue using a stack
  • Ans. 

    To implement a queue using a stack, use two stacks and simulate the queue operations.

    • Use two stacks, one for enqueue operation and one for dequeue operation.

    • For enqueue operation, simply push elements onto the stack used for enqueueing.

    • For dequeue operation, if the dequeue stack is empty, pop all elements from enqueue stack and push onto dequeue stack.

    • Then pop from the dequeue stack to simulate dequeue operation.

  • Answered by AI
  • Q2. Create a linked list
  • Ans. 

    A linked list is a data structure consisting of nodes where each node points to the next node in the sequence.

    • Create a Node class with data and next pointer

    • Initialize a head pointer to null

    • Add nodes by updating next pointers

    • Traverse the list by following next pointers

  • Answered by AI

Skills evaluated in this interview

Walking Tree Interview FAQs

How many rounds are there in Walking Tree Assistant Manager interview?
Walking Tree interview process usually has 1 rounds. The most common rounds in the Walking Tree interview process are HR.
How to prepare for Walking Tree Assistant Manager 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 Walking Tree. The most common topics and skills that interviewers at Walking Tree expect are Employee Engagement, HR, Analytical, Conflict Resolution and Employee Relations.
What are the most common questions asked in Walking Tree Assistant Manager HR round?

The most common HR questions asked in Walking Tree Assistant Manager interview are -

  1. What are your strengths and weakness...read more
  2. Why are you looking for a chan...read more
  3. Where do you see yourself in 5 yea...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 51 Interviews
IT By Design Interview Questions
3.6
 • 41 Interviews
ConsultAdd Interview Questions
3.6
 • 37 Interviews
View all

Walking Tree Assistant Manager Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
148 salaries
unlock blur

₹2.8 L/yr - ₹9 L/yr

Senior Software Engineer
102 salaries
unlock blur

₹6.3 L/yr - ₹18.8 L/yr

Associate Software Engineer
86 salaries
unlock blur

₹1.8 L/yr - ₹3.5 L/yr

Information Technology Recruiter
38 salaries
unlock blur

₹1.8 L/yr - ₹5.7 L/yr

Software Developer
35 salaries
unlock blur

₹1.8 L/yr - ₹13.7 L/yr

Explore more salaries
Compare Walking Tree with

Maxgen Technologies

4.6
Compare

JoulestoWatts Business Solutions

3.0
Compare

Value Point Systems

3.6
Compare

F1 Info Solutions and Services

3.7
Compare
write
Share an Interview