Upload Button Icon Add office photos

Filter interviews by

Infiniti Research Associate Product Manager Interview Questions and Answers

Updated 21 Nov 2024

Infiniti Research Associate Product Manager Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
-
Result
No response

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

Round 1 - Case Study 

Case study on competitor analysis of companies like Salesforce CRM

Interview questions from similar companies

I applied via Approached by Company and was interviewed before Jul 2021. There were 7 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 - HR 

(1 Question)

  • Q1. Basic question about qualification about experience suitable for role or not
Round 3 - Technical 

(3 Questions)

  • Q1. Oops concepts should be strong.
  • Q2. Strong knowledge with c#
  • Q3. Asp .net, MVC, web APIs, .net core .
Round 4 - Technical 

(1 Question)

  • Q1. Senior lead will take this round and deep knowledge of technology
Round 5 - One-on-one 

(1 Question)

  • Q1. Manager round with skills and experience
Round 6 - One-on-one 

(1 Question)

  • Q1. International call one to one
Round 7 - HR 

(1 Question)

  • Q1. Final discussion for salary and all

Interview Preparation Tips

Topics to prepare for Aristocrat Technologies Software Engineer interview:
  • OOPS
  • C#.Net
  • ASP.Net
  • ASP.Net MVC
  • Web Api
  • .Net Core
Interview preparation tips for other job seekers - Technical should be strong .
Oops concepts must be clear .
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Mar 2022. 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 - Coding Test 

MCQ based on programming, 2 programming problems

Round 3 - One-on-one 

(5 Questions)

  • Q1. What is copy constructor ?
  • Ans. 

    Copy constructor is a special constructor that creates a new object by copying an existing object.

    • It is used to initialize an object with another object of the same class.

    • It takes a reference to an object of the same class as an argument.

    • It creates a new object with the same values as the object passed as argument.

    • It is automatically called when a new object is created from an existing object.

    • Example: MyClass obj1; MyC

  • Answered by AI
  • Q2. What is shallow copy and deep copy ?
  • Ans. 

    Shallow copy creates a new object with the same reference as the original, while deep copy creates a new object with a new reference.

    • Shallow copy only copies the top-level object, while deep copy copies all nested objects.

    • Shallow copy is faster and uses less memory, while deep copy is slower and uses more memory.

    • Examples of shallow copy include copying arrays and objects using the spread operator, while examples of dee...

  • Answered by AI
  • Q3. Implement Merge Sort on an array
  • Ans. 

    Implementation of Merge Sort on an array

    • Divide the array into two halves

    • Recursively sort the two halves

    • Merge the sorted halves

    • Time complexity: O(n log n)

    • Space complexity: O(n)

  • Answered by AI
  • Q4. What are Virtual Functions ?
  • Ans. 

    Virtual functions are functions that can be overridden by derived classes.

    • Virtual functions are declared in a base class and can be overridden in derived classes.

    • They allow for polymorphism, where a derived class object can be treated as a base class object.

    • Virtual functions are called based on the actual object type, not the pointer or reference type.

    • They are declared using the virtual keyword in the base class and ca...

  • Answered by AI
  • Q5. What are you good at in C++ ?
  • Ans. 

    I am good at object-oriented programming, data structures, and algorithms in C++.

    • Strong understanding of object-oriented programming principles

    • Proficient in implementing data structures and algorithms in C++

    • Experience with memory management and pointers

    • Familiarity with C++ standard library and STL

    • Ability to optimize code for performance and efficiency

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Why do you want to get this job ?
  • Ans. 

    I am passionate about software development and this job aligns perfectly with my skills and interests.

    • I have a strong passion for software development and enjoy solving complex problems.

    • This job offers the opportunity to work on cutting-edge technologies and contribute to innovative projects.

    • I am excited about the company's mission and values, and believe in the positive impact software can have on society.

    • I am eager t...

  • Answered by AI
  • Q2. How long will you stay in this company ?
  • Ans. 

    I am committed to staying with the company for the long term and contributing to its success.

    • I am looking for a stable and challenging work environment.

    • I believe in the company's mission and values.

    • I am eager to grow and develop my skills within the company.

    • I am open to new opportunities and challenges that may arise.

    • I am committed to building strong relationships with my colleagues and contributing to a positive work

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do OOPS in detail. And practice Data Structures and Algorithms

Skills evaluated in this interview

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

(3 Questions)

  • Q1. Polymorphism in C++
  • Ans. 

    Polymorphism in C++ allows objects of different classes to be treated as objects of a common superclass.

    • Polymorphism is achieved through function overloading and virtual functions.

    • Function overloading allows multiple functions with the same name but different parameters.

    • Virtual functions are functions in a base class that are overridden in derived classes.

    • Example: Animal class with virtual function 'makeSound', Cat and

  • Answered by AI
  • Q2. Standard template library in C++
  • Ans. 

    STL in C++ provides reusable algorithms and data structures for efficient programming.

    • STL includes containers like vector, list, map, algorithms like sort, find, and iterators.

    • Example: vector v = {1, 2, 3}; sort(v.begin(), v.end());

    • STL saves time by providing pre-implemented solutions for common programming tasks.

Answered by AI
  • Q3. Design Patterns 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.

    • Understanding design patterns can improve code quality and efficiency in software developmen

  • Answered by AI

    Skills evaluated in this interview

    I applied via Recruitment Consultant and was interviewed in Aug 2021. There was 1 interview round.

    Interview Questionnaire 

    1 Question

    • Q1. Polymorphism and a function to randomize a pack of cards
    • Ans. 

      Polymorphism can be used to create a Card class with different types of cards. A function can then use polymorphism to randomize the pack.

      • Create a Card class with different types of cards as subclasses

      • Implement a function that creates a pack of cards using polymorphism to add different types of cards

      • Use a random number generator to shuffle the pack

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Just be good with OOPs concepts and you are good to go

    I applied via Referral and was interviewed in Aug 2021. There was 1 interview round.

    Interview Questionnaire 

    3 Questions

    • Q1. Find k min elements in given array.
    • Ans. 

      Find k min elements in given array.

      • Sort the array and return the first k elements.

      • Use a min heap of size k to find the k min elements.

      • Use quickselect algorithm to find the kth smallest element and return first k elements smaller than it.

    • Answered by AI
    • Q2. Find that given tree is BST or not.
    • Ans. 

      Check if a given tree is a Binary Search Tree (BST) or not.

      • Traverse the tree in-order and check if the elements are in ascending order.

      • Check if the maximum value in the left subtree is less than the root and the minimum value in the right subtree is greater than the root.

      • Use recursion to check if all subtrees are BSTs.

      • Time complexity: O(n), Space complexity: O(h) where h is the height of the tree.

    • Answered by AI
    • Q3. Find pair in BST with given sum
    • Ans. 

      Given a BST and a sum, find a pair of nodes whose values add up to the given sum.

      • Traverse the BST in-order and store the nodes in a list

      • Use two pointers approach to find the pair with the given sum

      • If the sum is less than the current pair, move the right pointer to the left

      • If the sum is greater than the current pair, move the left pointer to the right

      • If the sum is equal to the current pair, return the pair

      • Time complexit

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Interview was Focused on DS Algo mostly.
    2 technical round ( DS Algo)
    1 managerial round ( General past working experiences questions)

    Skills evaluated in this interview

    Interview experience
    2
    Poor
    Difficulty level
    Moderate
    Process Duration
    2-4 weeks
    Result
    Selected Selected

    I appeared for an interview before Dec 2023.

    Round 1 - One-on-one 

    (2 Questions)

    • Q1. Tell us about your past work.
    • Ans. 

      I have worked as a Product Manager for a tech company, leading cross-functional teams to launch successful products.

      • Led product development from ideation to launch

      • Collaborated with engineering, design, and marketing teams

      • Implemented agile methodologies for efficient product development

      • Managed product roadmap and prioritized features based on user feedback

      • Successfully launched a mobile app that increased user engagement

    • Answered by AI
    • Q2. What do you know about our company?
    • Ans. 

      Your company is a leading tech company specializing in e-commerce solutions.

      • Specializes in e-commerce solutions

      • Known for innovative technology

      • Has a strong market presence

      • Provides customizable solutions for businesses

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Do not join this company. It is the worst company that has ever existed. Recently, the CEO was fired, and the entire company is running like a headless chicken.
    Interview experience
    3
    Average
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I appeared for an interview in Jul 2024.

    Round 1 - Coding Test 

    Leet code medium level question

    Round 2 - Technical 

    (2 Questions)

    • Q1. About Java Streams
    • Q2. Restful API coding completion based on given file
    Round 3 - HR 

    (2 Questions)

    • Q1. To check your attitude
    • Q2. Given detailed about company and what project you are going to work on?
    Round 4 - One-on-one 

    (5 Questions)

    • Q1. Hashmap working
    • Ans. 

      Hashmap is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.

      • Hashmap uses a hashing function to map keys to indices in an array.

      • It allows for constant time complexity O(1) for insertion, deletion, and retrieval operations.

      • Example: HashMap<String, Integer> map = new HashMap<>(); map.put("key", 123); int value = map.get("key");

    • Answered by AI
    • Q2. Multithreading cases
    • Q3. Scenario specific on how to handle multiple events on a single variable to have accurate result
    • Q4. Database indexing
    • Q5. Architecture level
    Interview experience
    2
    Poor
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Coding Test 

    1 coding question, and basic MCQ

    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 - Coding Test 

    Two easy questions two wasy questions two easy questions two easy questions

    Round 3 - Technical 

    (2 Questions)

    • Q1. Technical interviews was very easy techijcal interviews was very easy very easy very easy
    • Q2. Interviews was conducted in advance of a news conference in the United Kingdom and the European government on Tuesday

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Ghar was the second man killed by an twowwywiwywuw The new rules would be similar y

    Infiniti Research Interview FAQs

    How many rounds are there in Infiniti Research Associate Product Manager interview?
    Infiniti Research interview process usually has 1 rounds. The most common rounds in the Infiniti Research interview process are Case Study.

    Tell us how to improve this page.

    Infiniti Research Associate Product Manager Interview Process

    based on 1 interview

    Interview experience

    1
      
    Bad
    View more

    Interview Questions from Similar Companies

    Chegg Interview Questions
    4.1
     • 155 Interviews
    CMA CGM Interview Questions
    3.9
     • 92 Interviews
    Sigmoid Interview Questions
    3.3
     • 59 Interviews
    Knorr-Bremse Interview Questions
    3.9
     • 55 Interviews
    Aristocrat Interview Questions
    3.9
     • 45 Interviews
    View all
    Research Associate
    179 salaries
    unlock blur

    ₹2 L/yr - ₹7 L/yr

    Research Analyst
    108 salaries
    unlock blur

    ₹3.2 L/yr - ₹9.8 L/yr

    Senior Research Associate
    108 salaries
    unlock blur

    ₹3.5 L/yr - ₹8.6 L/yr

    Senior Software Engineer
    57 salaries
    unlock blur

    ₹4.7 L/yr - ₹12.3 L/yr

    Analyst
    55 salaries
    unlock blur

    ₹4 L/yr - ₹10.2 L/yr

    Explore more salaries
    Compare Infiniti Research with

    Chegg

    4.1
    Compare

    CMA CGM

    3.9
    Compare

    Tekwissen

    4.8
    Compare

    Nasser S. Al Hajri Corporation

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