I applied online. The process took 1 day. I interviewed at Scientific Games (Pune) in May 2016
Interview
Initially they took C++ MCQ test. Test was average. It was like you have to guess the output of program. etc
and then there was face to face interview on C++. Mostly there focus on design pattern and gaming logic. Please refer following questions of 1st F2F round
Interview questions [1]
Question 1
1. What is polymorphism? What is static and dynamic polymorphism
2. What is vitual functions?
3. What is vtable and vptr?
4. What are the type of design pattern? Explain it. Tell about subtype of that.
5. Which design pattern you have used in you project? How will you decide which design pattern to use where?
6. What is singleton design.
7. Write small fun for operator overloading for + operator
8. Why we use const in prototype of operator overloading?
9. class test {
int funct( void ) const;
};
what it will return?
->There is a pointer to the object for which a function is called known as the 'this' pointer. By default the type of 'this' is X *const ( a constant pointer). The const keyword changes the type to const X *const ( a constant pointer to constant data ).
10. Difference betn vector and list? How will u decide which one to use
11. You have a class called Math which having 2 virtual fun add(), sub(). How many vtable will be created for this class and how it looks like??
What we store in vtable?
Very easy one technical round one techno managerial round but very easy to crack the interview. Easily we can answer all the questions asked .
Technical round was very easy just basic database questions and oops concepts they will ask, in techno managerial round same more on data base questions.
It was smooth and onboarding process was written process which i didnt liked as it was very time taking process and took a day to complete it. Recruiter was very professional and helped alot
I applied online. I interviewed at Scientific Games in Mar 2024
Interview
Overall pretty chill interview. Primarily was asked about certain fundamentals of Object Oriented Programming and Pass By Value vs Pass By Reference types of questions before starting the coding question.
Interview questions [1]
Question 1
Given an array of integers nums sorted in non-decreasing order, find the starting and ending position of a given target value.