Upload Button Icon Add office photos

Filter interviews by

International Game Technology Senior Process Associate Interview Questions and Answers

Updated 10 Jul 2023

International Game Technology Senior Process Associate Interview Experiences

1 interview found

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

I applied via Walk-in and was interviewed in Jun 2023. There were 3 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 - Versant 

(3 Questions)

  • Q1. It was good, will check your vocabulary and grammar.
  • Q2. Tell me something about your last customer care executive good experience.
  • Q3. How you will handle an aggressive customer.
  • Ans. 

    I would remain calm, listen actively, empathize with the customer, and offer solutions to address their concerns.

    • Remain calm and composed

    • Listen actively to understand the customer's concerns

    • Empathize with the customer's emotions

    • Offer solutions to address the customer's issues

    • Seek assistance from a supervisor if necessary

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Be confident and personable.
  • Q2. Well whats your salary in privious company

Interview Preparation Tips

Interview preparation tips for other job seekers - All the very best and be confident.

Interview questions from similar companies

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

I applied via IIM Jobs and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

SQL Coding Test - asked 5 queries related to joins, ranks, group by

Round 2 - Case Study 

Asked guesstimates, technical CV Question, case

Round 3 - Case Study 

Asked guesstimate, market entry question, case

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - Aptitude Test 

Knowledge of technical aspects related to games.

Round 2 - Technical 

(3 Questions)

  • Q1. How do you handle customer support in a CX (Customer Experience) role?
  • Ans. 

    I handle customer support in a CX role by actively listening to customers, empathizing with their concerns, and providing timely and effective solutions.

    • Actively listen to customers to understand their concerns and needs

    • Empathize with customers to show understanding and build rapport

    • Provide timely and effective solutions to resolve customer issues

    • Follow up with customers to ensure their satisfaction and address any fur

  • Answered by AI
  • Q2. Game issues gamers face during gameplay, i.e. Fps, lag, network related questions.
  • Ans. 

    Gamers often face issues like low FPS, lag, and network connectivity problems during gameplay.

    • Low FPS can be caused by outdated hardware or software, high graphics settings, or background processes.

    • Lag can be due to poor internet connection, server issues, or high ping.

    • Network connectivity problems can be resolved by checking router settings, using wired connection, or contacting ISP for assistance.

  • Answered by AI
  • Q3. Practical questions like how you can handle a customer who faced this issue relatedto game for example network related. Then how can you help him.
Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion
  • Q2. Discussion related to Shift timings, increment etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not join this company unless you require permanent work from home. They make false promises to candidates and deny everything they stated during the hiring process. The management is very poor.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. C# fundamentals, database
Round 2 - One-on-one 

(1 Question)

  • Q1. Behavioural question

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for technical questions & fundamentals of the technology
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Classes, oops, array, constructor

Round 2 - Technical 

(2 Questions)

  • Q1. Write a code for copy constructor
  • Ans. 

    A copy constructor is a special type of constructor that creates a new object as a copy of an existing object.

    • Copy constructor should have a parameter of the same class type

    • It is used to create a new object by copying the values of an existing object

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

  • Answered by AI
  • Q2. Write a code for virtual function
  • Ans. 

    A virtual function is a member function that is declared within a base class and is redefined by a derived class.

    • Declare a virtual function in the base class using the 'virtual' keyword.

    • Override the virtual function in the derived class using the 'override' keyword.

    • Use the base class pointer to call the virtual function, which will be resolved at runtime based on the actual object type.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Design patterns
  • Q2. Oops concept and implementation
  • Ans. 

    Oops concept refers to Object-Oriented Programming principles and their implementation in software development.

    • Oops concepts include inheritance, polymorphism, encapsulation, and abstraction.

    • Inheritance allows a class to inherit properties and behaviors from another class.

    • Polymorphism allows objects to be treated as instances of their parent class.

    • Encapsulation hides the internal state of an object and only exposes nec...

  • 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 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
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

1. Questions related to python.
2. Find the count of unique elements in a list.

Round 3 - Coding Test 

1. Implementation of any sorting.
2. Questions related to testing and pytest framework.

Round 4 - Behavioral 

(3 Questions)

  • Q1. Casual conversation with Senior manager
  • Q2. Tell me about your self.
  • Q3. Discussion about job profile.
Round 5 - HR 

(1 Question)

  • Q1. Salary discussion.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with the in depth knowledge abouts the job in which you are applying.
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

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

    I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

    Round 1 - Technical 

    (2 Questions)

    • Q1. What is the difference between Union and Union all ?
    • Ans. 

      Union combines the results of two or more SELECT statements, while Union all includes all rows, including duplicates.

      • Union removes duplicate rows from the result set, while Union all includes all rows.

      • Union sorts the result set, while Union all does not.

      • Union is slower than Union all because it performs a distinct operation.

      • Example: SELECT column1 FROM table1 UNION SELECT column1 FROM table2;

      • Example: SELECT column1 FRO

    • Answered by AI
    • Q2. Which query is more faster , joins or union?
    • Ans. 

      Joins are generally faster than unions.

      • Joins are typically faster than unions because they combine data from multiple tables based on a common column, while unions combine data from multiple queries into a single result set.

      • Joins can utilize indexes on the columns being joined, which can improve performance.

      • Unions involve combining the results of multiple queries, which can be slower as it requires merging and sorting ...

    • Answered by AI

    Interview Preparation Tips

    Topics to prepare for Aristocrat Data Analyst interview:
    • SQL
    • Power BI

    International Game Technology Interview FAQs

    How many rounds are there in International Game Technology Senior Process Associate interview?
    International Game Technology interview process usually has 3 rounds. The most common rounds in the International Game Technology interview process are Resume Shortlist and HR.
    What are the top questions asked in International Game Technology Senior Process Associate interview?

    Some of the top questions asked at the International Game Technology Senior Process Associate interview -

    1. How you will handle an aggressive custom...read more
    2. It was good, will check your vocabulary and gramm...read more

    Tell us how to improve this page.

    International Game Technology Senior Process Associate Interview Process

    based on 1 interview

    Interview experience

    5
      
    Excellent
    View more

    Interview Questions from Similar Companies

    Pole To Win Interview Questions
    3.4
     • 58 Interviews
    Aristocrat Interview Questions
    3.8
     • 45 Interviews
    Light & Wonder Interview Questions
    3.9
     • 29 Interviews
    Electronic Arts Interview Questions
    4.1
     • 23 Interviews
    IDZ Digital Interview Questions
    3.8
     • 22 Interviews
    Games24x7 Interview Questions
    3.7
     • 19 Interviews
    View all
    International Game Technology Senior Process Associate Salary
    based on 15 salaries
    ₹0.9 L/yr - ₹6.5 L/yr
    21% less than the average Senior Process Associate Salary in India
    View more details

    International Game Technology Senior Process Associate Reviews and Ratings

    based on 4 reviews

    1.2/5

    Rating in categories

    1.4

    Skill development

    1.1

    Work-life balance

    1.1

    Salary

    1.0

    Job security

    1.2

    Company culture

    1.3

    Promotions

    1.2

    Work satisfaction

    Explore 4 Reviews and Ratings
    Process Associate
    335 salaries
    unlock blur

    ₹1.1 L/yr - ₹5.6 L/yr

    Customer Service Executive
    36 salaries
    unlock blur

    ₹1.5 L/yr - ₹3.9 L/yr

    Customer Care Executive
    36 salaries
    unlock blur

    ₹1.5 L/yr - ₹4.2 L/yr

    Software Engineer
    27 salaries
    unlock blur

    ₹3.5 L/yr - ₹14.7 L/yr

    Senior Software Engineer
    23 salaries
    unlock blur

    ₹4.4 L/yr - ₹15.6 L/yr

    Explore more salaries
    Compare International Game Technology with

    Pole To Win

    3.4
    Compare

    Ubisoft Entertainment

    3.8
    Compare

    Aristocrat

    3.9
    Compare

    Electronic Arts

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