Upload Button Icon Add office photos

Aristocrat Technologies

Compare button icon Compare button icon Compare

Filter interviews by

Aristocrat Technologies Senior Engineer 1 Interview Questions and Answers

Updated 19 Oct 2024

Aristocrat Technologies Senior Engineer 1 Interview Experiences

1 interview found

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. What's the size of class with and without virtual function ?
  • Ans. 

    The size of a class with virtual functions is larger than the size of a class without virtual functions due to the additional overhead of virtual function tables.

    • Classes with virtual functions have an additional pointer to the virtual function table (vtable) which increases their size.

    • The size of a class without virtual functions is determined by the size of its data members and any padding added for alignment.

    • For exam...

  • Answered by AI
  • Q2. Reverse a linked list, benefit of reversing a doubly linked list ?
  • Ans. 

    Reversing a linked list involves changing the direction of pointers, while reversing a doubly linked list allows for traversal in both directions.

    • To reverse a linked list, iterate through the list and change the direction of pointers to point to the previous node instead of the next node.

    • In a doubly linked list, reversing allows for traversal in both directions, making operations like deletion and insertion more effici...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - C++(core) and OOPs

Skills evaluated in this interview

Interview questions from similar companies

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

(1 Question)

  • Q1. Javascript and React fundamentals
Round 2 - Coding Test 

Question completely out of domain

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What are the pillars of OOPS?
  • Ans. 

    The pillars of OOPS are Inheritance, Encapsulation, Abstraction, and Polymorphism.

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

    • Encapsulation restricts access to certain components within a class, protecting the data from outside interference.

    • Abstraction hides the complex implementation details and only shows the necessary features to the user.

    • Polymorphism allows objects to be treated...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

1 hour, 22 questions related to Java Spring Boot, SQL, and Hibernate, also one DSA Question, implementation of a card board game.

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

Required to write codes in python

Round 2 - Coding Test 

Required to write codes in python

Round 3 - HR 

(2 Questions)

  • Q1. Time to tackle difficulties
  • Q2. Time to learn things outside school
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Merge sorted arrays
Round 2 - Technical 

(1 Question)

  • Q1. Checking cache using python
  • Ans. 

    Use Python's built-in 'functools' module to check cache for function results.

    • Import 'functools' module

    • Use 'lru_cache' decorator to cache function results

    • Specify 'maxsize' parameter to limit cache size

    • Use 'cache_info()' method to get cache statistics

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - basic python questions

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What is bug in any application?
  • Ans. 

    A bug in an application is an error, flaw, failure, or fault in the software code that causes it to produce incorrect or unexpected results.

    • Bugs can range from simple syntax errors to complex logic issues.

    • Common types of bugs include logic errors, syntax errors, and runtime errors.

    • Examples of bugs include a calculator app displaying incorrect results, a website crashing when a specific button is clicked, or a game free

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. What is the life cycle of bug?
  • Ans. 

    Bug life cycle includes identification, reporting, fixing, retesting, and closing.

    • Identification: Bug is identified by testers during testing.

    • Reporting: Testers report the bug to developers.

    • Fixing: Developers fix the bug in the code.

    • Retesting: Testers retest the fixed bug to ensure it is resolved.

    • Closing: Once bug is confirmed fixed, it is closed.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Why team bonding is needed for healthy work culture?

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Newspaper Ad and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

1. Question regarding Strings and maths .

Round 2 - One-on-one 

(1 Question)

  • Q1. Design twitter.
  • Ans. 

    Design a social media platform for microblogging and sharing short messages.

    • User profiles with bio, profile picture, and followers/following counts

    • Ability to post tweets with text, images, and videos

    • Timeline to view tweets from followed users

    • Hashtags and mentions for organizing and interacting with content

    • Like, retweet, and reply functionalities for engagement

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zynga Game Network Senior Software Engineer interview:
  • Trees
  • Stringing
Interview preparation tips for other job seekers - Leetcode hard grinding.

Skills evaluated in this interview

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

Basic coding test like palindrome, series,arrays

Round 3 - One-on-one 

(1 Question)

  • Q1. Logical questions,puzzle, behavioural round, introduction

I applied via Recruitment Consulltant and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - Coding Test 

General coding questions

Round 2 - Technical 

(1 Question)

  • Q1. Related technical question

Interview Preparation Tips

Interview preparation tips for other job seekers - Mid level company, salary is not upto market. Rest is fine.

Aristocrat Technologies Interview FAQs

How many rounds are there in Aristocrat Technologies Senior Engineer 1 interview?
Aristocrat Technologies interview process usually has 1 rounds. The most common rounds in the Aristocrat Technologies interview process are One-on-one Round.
What are the top questions asked in Aristocrat Technologies Senior Engineer 1 interview?

Some of the top questions asked at the Aristocrat Technologies Senior Engineer 1 interview -

  1. What's the size of class with and without virtual functio...read more
  2. reverse a linked list, benefit of reversing a doubly linked lis...read more

Tell us how to improve this page.

Aristocrat Technologies Senior Engineer 1 Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more

Interview Questions from Similar Companies

Pole To Win Interview Questions
3.4
 • 53 Interviews
Light & Wonder Interview Questions
3.8
 • 29 Interviews
PurpleTalk Interview Questions
3.9
 • 27 Interviews
Electronic Arts Interview Questions
4.1
 • 22 Interviews
Games24x7 Interview Questions
3.7
 • 19 Interviews
View all
Aristocrat Technologies Senior Engineer 1 Salary
based on 44 salaries
₹7.5 L/yr - ₹14.2 L/yr
40% less than the average Senior Engineer 1 Salary in India
View more details

Aristocrat Technologies Senior Engineer 1 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
Senior Technical Lead
210 salaries
unlock blur

₹12 L/yr - ₹37 L/yr

Technical Lead
199 salaries
unlock blur

₹10 L/yr - ₹28 L/yr

Senior Engineer
115 salaries
unlock blur

₹7 L/yr - ₹16 L/yr

Senior Engineer II
97 salaries
unlock blur

₹8.7 L/yr - ₹20 L/yr

Senior Software Engineer
94 salaries
unlock blur

₹7.1 L/yr - ₹22 L/yr

Explore more salaries
Compare Aristocrat Technologies with

International Game Technology

3.3
Compare

Light & Wonder

3.8
Compare

Playtech India

5.0
Compare

Bet365

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