Upload Button Icon Add office photos

Filter interviews by

Ind Innovations Project Manager Interview Questions and Answers

Updated 12 Dec 2023

Ind Innovations Project Manager Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. Related to my career and leadership quality test
Round 3 - Technical 

(1 Question)

  • Q1. All round the technical queries for their project requirements.
Round 4 - HR 

(1 Question)

  • Q1. Final negotiations for offer.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Case study based on scenario
  • Q2. Group interview with Panel
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Asked scenario based questions

Round 2 - Technical 

(1 Question)

  • Q1. Scenario based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to Join. But be sure rules and regulations of the company

I applied via Approached by Company and was interviewed in Nov 2021. There were 4 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 

(1 Question)

  • Q1. 1. What made you decide to take this job 2. Pick up a product and assume you are a manager and lets discuss about it 3. What is your definition of success and why
Round 3 - Assignment 

One of their product was given and i had to make a business proposal

Round 4 - HR 

(1 Question)

  • Q1. General HR question about stress management, leadership skills

Interview Preparation Tips

Topics to prepare for QNAP Systems Product Manager interview:
  • Team Management
  • Bussiness development
  • Corporate Communication
Interview preparation tips for other job seekers - Be confident, don't prepare too much. Sometimes your critical thinking can help you much better than your prepared answers

I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. C2H profile basic technology based question s only

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about your answer
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Java core and spring questions
  • Q2. How would you find an element from a list
  • Ans. 

    Use a loop to iterate through the list and compare each element with the target element

    • Iterate through the list using a loop

    • Compare each element with the target element

    • Return the element if found, otherwise return null

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Screening 

(3 Questions)

  • Q1. Basic C++ questions: initialiser list and applications
  • Q2. Questions on vector implementation
  • Q3. Question on linux file system
Round 2 - Technical 

(2 Questions)

  • Q1. Design a logger class
  • Ans. 

    A logger class to handle logging messages in an application

    • Create a Logger class with methods like logInfo, logError, logWarning, etc.

    • Use a file or database to store the log messages

    • Include timestamp and severity level in each log message

    • Implement log rotation to manage log file size

  • Answered by AI
  • Q2. What is RAII, rule of 3, 5. What is smart pointers and coding questions based on string
  • Ans. 

    RAII is a resource management technique in C++. Rule of 3/5 refers to special member functions. Smart pointers are objects that manage memory automatically.

    • RAII stands for Resource Acquisition Is Initialization, a C++ programming technique where resource management is tied to object lifetime.

    • Rule of 3 states that if a class defines a custom destructor, copy constructor, or copy assignment operator, it should define all...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - HR 

(4 Questions)

  • Q1. About ourselves
  • Q2. Professional experience
  • Q3. Salary expectation
  • Q4. Notice period, if experienced
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Mar 2023. There were 2 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 

(5 Questions)

  • Q1. What are oops concepts in java, explain real time scenario
  • Ans. 

    OOPs concepts in Java include inheritance, polymorphism, encapsulation, and abstraction.

    • Inheritance allows a subclass to inherit properties and methods from a superclass.

    • Polymorphism allows objects to take on multiple forms and behave differently based on their context.

    • Encapsulation hides the implementation details of an object and only exposes necessary information.

    • Abstraction allows for the creation of abstract class...

  • Answered by AI
  • Q2. Uses of interface, inheritance
  • Ans. 

    Interfaces define contracts for behavior, while inheritance allows for code reuse and polymorphism.

    • Interfaces allow for loose coupling and abstraction, enabling multiple implementations of the same behavior.

    • Inheritance allows for code reuse and extension of existing classes, reducing code duplication.

    • Polymorphism allows objects of different classes to be treated as if they were of the same class, simplifying code and i

  • Answered by AI
  • Q3. SQL query for join of tables
  • Ans. 

    SQL query for joining tables

    • Use JOIN keyword to combine two or more tables based on a related column

    • Specify the columns to be selected using SELECT keyword

    • Use ON keyword to specify the condition for joining the tables

    • Different types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN

  • Answered by AI
  • Q4. Java concepts used in your project
  • Ans. 

    Used Java concepts such as inheritance, polymorphism, and exception handling in my project.

    • Implemented inheritance to create a base class and derived classes with specific functionalities.

    • Utilized polymorphism to allow objects of different classes to be treated as if they were of the same class.

    • Implemented exception handling to handle errors and prevent program crashes.

    • Used interfaces to define a set of methods that a ...

  • Answered by AI
  • Q5. Overloading vs overriding, practical uses
  • Ans. 

    Overloading is having multiple methods with the same name but different parameters. Overriding is having a method in a subclass with the same name and parameters as a method in the superclass.

    • Overloading is used to provide different ways to call a method with different parameters

    • Overriding is used to provide a specific implementation of a method in a subclass

    • Overloading is resolved at compile-time while overriding is r...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zebra Technologies Software Developer interview:
  • Core Java
  • OOPS
  • collection framework
  • Database Management

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

Normal apptitude queations were asked in this round

Round 2 - Technical 

(1 Question)

  • Q1. Questions on javascript Basic of HTML, CSS

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare for basics

Ind Innovations Interview FAQs

How many rounds are there in Ind Innovations Project Manager interview?
Ind Innovations interview process usually has 4 rounds. The most common rounds in the Ind Innovations interview process are HR, Resume Shortlist and Technical.
What are the top questions asked in Ind Innovations Project Manager interview?

Some of the top questions asked at the Ind Innovations Project Manager interview -

  1. All round the technical queries for their project requiremen...read more
  2. Final negotiations for off...read more

Tell us how to improve this page.

Ind Innovations Project Manager Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

CGS Interview Questions
3.5
 • 25 Interviews
Pitney Bowes Interview Questions
3.8
 • 21 Interviews
DynPro Interview Questions
3.8
 • 20 Interviews
Intellias Interview Questions
4.6
 • 6 Interviews
QNAP Systems Interview Questions
3.1
 • 4 Interviews
View all
Ind Innovations Project Manager Salary
based on 4 salaries
₹3 L/yr - ₹7.8 L/yr
67% less than the average Project Manager Salary in India
View more details

Ind Innovations Project Manager Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

2.0

Work-life balance

2.0

Salary

1.0

Job security

2.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Technical Support Engineer
34 salaries
unlock blur

₹1.4 L/yr - ₹5 L/yr

Network Engineer
27 salaries
unlock blur

₹2.5 L/yr - ₹5 L/yr

Software Analyst
23 salaries
unlock blur

₹2.3 L/yr - ₹2.5 L/yr

Desktop Support Engineer
22 salaries
unlock blur

₹1 L/yr - ₹3.5 L/yr

Linux Administrator
14 salaries
unlock blur

₹3.6 L/yr - ₹6.5 L/yr

Explore more salaries
Compare Ind Innovations with

Primus Global Technologies

3.9
Compare

Accel Frontline

4.0
Compare

Pitney Bowes

3.8
Compare

DynPro

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