Upload Button Icon Add office photos

Filter interviews by

Tech India Senior Manager Interview Questions and Answers

Updated 28 Jun 2024

Tech India Senior Manager Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How to suggest new technologies like snowflake to client
  • Ans. 

    Introduce Snowflake to clients by highlighting its benefits and demonstrating its value in improving data analytics and performance.

    • Educate clients on the advantages of Snowflake, such as scalability, flexibility, and cost-effectiveness.

    • Provide case studies or success stories of other companies that have implemented Snowflake and seen positive results.

    • Offer a demo or trial period for clients to experience Snowflake's c...

  • Answered by AI
  • Q2. How will you manage the team if there is descripency

Interview Preparation Tips

Interview preparation tips for other job seekers - do your best

Interview questions from similar companies

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. What made me change the job from previous organisation
  • Q2. JD process flow discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest with your answers
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. What are the dynamics of Human Resources (HR) in a hospital setting?
  • Q2. NABH Standards
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - HR 

(1 Question)

  • Q1. Tell me something about your work
  • Ans. Start with your achievements add numbers to support your answers
  • Answered Anonymously
Round 3 - Technical 

(1 Question)

  • Q1. What are your key performance areas?
  • Ans. 

    Key performance areas include leadership, strategic planning, team management, financial management, and project execution.

    • Leadership: Ability to inspire and motivate teams towards achieving goals.

    • Strategic planning: Developing long-term plans to drive business growth.

    • Team management: Ensuring effective collaboration and communication within the team.

    • Financial management: Budgeting, forecasting, and monitoring financia...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Aug 2024. There were 4 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Technical questions based on my resume, coding, project architect, etc.
Round 2 - One-on-one 

(1 Question)

  • Q1. System design round. LLD and HLD.
Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial with a little bit of technical. Work ethics, vision and ctc expectations.
Round 4 - HR 

(1 Question)

  • Q1. Compensation discussion.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Basics of C++. Solve some problem by given complexity. Find the bugs in code.

Round 2 - Technical 

(2 Questions)

  • Q1. Question from your last project.
  • Q2. Design pattern in C++.
  • Ans. 

    Design patterns in C++ are reusable solutions to common problems in software design.

    • Design patterns help in creating flexible, maintainable, and scalable code.

    • Examples of design patterns in C++ include Singleton, Factory, Observer, and Strategy.

    • Each design pattern has a specific purpose and can be applied in different scenarios.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What will you do in your previous company
  • Ans. 

    Implemented new sales strategies, streamlined operations, and increased revenue by 20%.

    • Implemented new sales strategies to target untapped markets

    • Streamlined operations by optimizing processes and reducing inefficiencies

    • Increased revenue by 20% through effective sales and marketing initiatives

  • Answered by AI
  • Q2. Do you know about Oracle, SSRS ,HIS
  • Ans. 

    Yes, I am familiar with Oracle, SSRS, and HIS.

    • Oracle is a popular relational database management system used for storing and managing data.

    • SSRS (SQL Server Reporting Services) is a reporting tool provided by Microsoft for creating and managing reports.

    • HIS (Health Information System) is a system used in healthcare organizations for managing patient data and healthcare information.

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Tell me about your self

Interview Preparation Tips

Interview preparation tips for other job seekers - If you know politics and have charming look then this job will help you to reach from excutive to director level
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

They are ask qutions on Denials,Ram.

Round 2 - Group Discussion 

Denials and some Ram quetion

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

I was interviewed in Jul 2022.

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 

They ask you open Hacker Earth site and choose some random programs and ask you to complete it.

Round 3 - Technical 

(6 Questions)

  • Q1. What is multi threading
  • Ans. 

    Multi threading is the ability of a program to perform multiple tasks concurrently.

    • It allows for better utilization of CPU resources

    • It can improve program performance and responsiveness

    • Examples include web servers handling multiple requests simultaneously and video games rendering graphics while processing user input

  • Answered by AI
  • Q2. What is extend keyword
  • Ans. 

    The extend keyword is used to add properties and methods to an existing object.

    • Used in JavaScript to add properties and methods to an object

    • Can be used to inherit properties and methods from a parent object

    • Syntax: Object.assign(target, ...sources)

    • Example: const obj1 = {a: 1}; const obj2 = {b: 2}; const obj3 = {...obj1, ...obj2};

  • Answered by AI
  • Q3. Explain override. Why we need virtual?
  • Ans. 

    Override is used to provide a new implementation of a method in a subclass. Virtual is needed to allow the method to be overridden.

    • Override is used to change the behavior of a method in a subclass

    • Virtual is used to allow the method to be overridden in a subclass

    • Without virtual, a subclass cannot override a method from its parent class

    • Override is used to implement polymorphism in object-oriented programming

  • Answered by AI
  • Q4. Write a program to sort the array and remove duplicates.
  • Ans. 

    Program to sort and remove duplicates from an array.

    • Use built-in sort() method to sort the array in ascending order.

    • Loop through the sorted array and remove duplicates using filter() method.

    • Return the sorted and duplicate-free array.

  • Answered by AI
  • Q5. What is Is Relationship and As Relationship in oops?
  • Ans. 

    Is Relationship and As Relationship are two types of relationships in object-oriented programming.

    • Is Relationship is a type of relationship where one class is a subset of another class.

    • As Relationship is a type of relationship where one class is a type of another class.

    • Is Relationship is denoted by a solid line with a closed arrowhead pointing towards the superclass.

    • As Relationship is denoted by a dotted line with an o...

  • Answered by AI
  • Q6. What are architectural, structural, behavioural design patterns? Why we need them?
  • Ans. 

    Architectural, structural, and behavioral design patterns are reusable solutions to common software design problems.

    • Architectural patterns define the overall structure of a software system

    • Structural patterns describe how objects and classes can be combined to form larger structures

    • Behavioral patterns focus on communication between objects and how they operate together

    • Design patterns help to improve software quality, ma...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with basic programming and algorithms.

Skills evaluated in this interview

Tech India Interview FAQs

How many rounds are there in Tech India Senior Manager interview?
Tech India interview process usually has 1 rounds. The most common rounds in the Tech India interview process are Technical.

Tell us how to improve this page.

Tech India Senior Manager Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Software Engineer
15 salaries
unlock blur

₹3 L/yr - ₹7.5 L/yr

Senior Software Engineer
10 salaries
unlock blur

₹8.5 L/yr - ₹23 L/yr

Softwaretest Engineer
8 salaries
unlock blur

₹2.4 L/yr - ₹7.1 L/yr

Software Developer
7 salaries
unlock blur

₹3 L/yr - ₹9.2 L/yr

Team Lead
6 salaries
unlock blur

₹1.8 L/yr - ₹13.9 L/yr

Explore more salaries
Compare Tech India with

Infosys

3.6
Compare

Wipro

3.7
Compare

TCS

3.7
Compare

HCLTech

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