Upload Button Icon Add office photos

Filter interviews by

OpenBet Interview Questions and Answers

Updated 9 Jan 2025

OpenBet Interview Experiences

Popular Designations

3 interviews found

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

I applied via campus placement at KIIT University, Bhuvaneshwar and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Two coding questions were asked of leetcode medium level array and string questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Matrix related basic coding question was asked
  • Q2. Explanation of Difference between C++ and Java

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (170)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. SetTimeout javascript questions
  • Q2. Main window object structure

Interview Preparation Tips

Interview preparation tips for other job seekers - Have good grip in JS

Senior Software Engineer Interview Questions asked at other Companies

Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
View answer (1)

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 28 Mar 2024

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

(1 Question)

  • Q1. Initial HR assessment, with one-on-one round with team member followed by Managerial round

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (9)

Jobs at OpenBet

View all

Interview questions from similar companies

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

I was interviewed in Sep 2024.

Round 1 - Technical 

(5 Questions)

  • Q1. Write a program in .NET that outputs the characters appearing more than two times consecutively in a given string.
  • Q2. If there are five microservices, labeled as microservice one, microservice two, microservice three, microservice four, and microservice five. Microservice three breaks. Requests from microservice two to ...
  • Q3. What is an abstract class, and why is it necessary to use an abstract class when interfaces already exist?
  • Q4. What design patterns have you utilized in your projects?
  • Q5. Can you illustrate the architecture of your application?
Round 2 - Technical 

(10 Questions)

  • Q1. Given a list of strings that may contain duplicates, return a list of the duplicate strings using the most efficient approach.
  • Q2. Could you explain what your application does and the types of technology it utilizes?
  • Q3. When should we use MS SQL and NoSQL databases?
  • Q4. Which NoSQL database would you choose as an alternative to Elasticsearch, and what are your reasons for that choice?
  • Q5. What are the differences between MongoDB and PostgreSQL?
  • Q6. What are the differences between conventional URLs and attribute URLs in .NET Core Web API?
  • Q7. What is the working mechanism of OAuth authorization?
  • Q8. What steps do you take to ensure that an application remains maintainable?
  • Q9. Which design patterns have you utilized in your work?
  • Q10. How does Repository Pattern help in maintaining your codebase
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

A question regarding mechanical concepts and other inquiries related to amplitude.

Round 2 - Technical 

(5 Questions)

  • Q1. Questions related to resume uploaded and other technical like manufacturing and cad software related
  • Q2. Material selection and discussion about company
  • Q3. Difficulty where you are structed during the project
  • Ans. 

    I faced difficulty in managing conflicting priorities and deadlines during a project.

    • Prioritize tasks based on urgency and importance

    • Communicate with team members and stakeholders to manage expectations

    • Break down tasks into smaller, manageable chunks to stay on track

    • Seek help or guidance from mentors or supervisors when needed

  • Answered by AI
  • Q4. Discussion and deep introduction about me and project
  • Q5. Discussion about Certificate which achieved in field

Interview Preparation Tips

Interview preparation tips for other job seekers - Good experience to sharing the knowledge and technical reviews
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - Group Discussion 

Difference between online study and offline study

Round 2 - Technical 

(2 Questions)

  • Q1. All types of testing one by one (System, integration, usability, black box, white box)
  • Q2. Question on gaming like are you a mobile game player or pc or console game player, what's the difference between them.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jan 2025.

Round 1 - Technical 

(7 Questions)

  • Q1. Basic Javascript questions were asked like Hoisting, Event Loop, Closure.
  • Q2. What are semantic tags? << HTML based question
  • Ans. 

    Semantic tags in HTML are specific tags that provide meaning to the content they enclose.

    • Semantic tags help search engines and screen readers understand the structure of a webpage.

    • Examples of semantic tags include <header>, <footer>, <nav>, <article>, <section>, <aside>, <main>, <figure>, <figcaption>.

    • Using semantic tags improves SEO and accessibility of a website.

  • Answered by AI
  • Q3. What is currying in js?
  • Ans. 

    Currying is a technique in functional programming where a function with multiple arguments is transformed into a sequence of nested functions, each taking a single argument.

    • Currying helps in creating reusable functions and partial application.

    • It allows you to create new functions by fixing some parameters of an existing function.

    • Example: const add = (a) => (b) => a + b; add(2)(3) will return 5.

  • Answered by AI
  • Q4. What is the difference between Map and Filter?
  • Ans. 

    Map is used to transform each element of an array, while Filter is used to select elements based on a condition.

    • Map returns a new array with the same length as the original array, but with each element transformed based on a provided function.

    • Filter returns a new array with only the elements that pass a provided condition function.

    • Example for Map: [1, 2, 3].map(num => num * 2) will result in [2, 4, 6].

    • Example for Fi...

  • Answered by AI
  • Q5. What is the difference between Map and ForEach?
  • Ans. 

    Map creates a new array with the results of calling a provided function on every element, while forEach executes a provided function once for each array element.

    • Map returns a new array with the same length as the original array, while forEach does not return anything.

    • Map does not mutate the original array, while forEach can mutate the original array.

    • Map is more suitable for transforming data and creating a new array, w...

  • Answered by AI
  • Q6. What is the difference between Authentication and Authorization?
  • Ans. 

    Authentication verifies the identity of a user, while authorization determines the user's access rights.

    • Authentication confirms the user's identity through credentials like username and password.

    • Authorization determines what actions the authenticated user is allowed to perform.

    • Authentication precedes authorization in the security process.

    • Example: Logging into a website (authentication) and then accessing specific pages

  • Answered by AI
  • Q7. What is the difference between Local storage and Session storage?
  • Ans. 

    Local storage persists even after the browser is closed, while session storage is cleared when the browser is closed.

    • Local storage has no expiration date, while session storage expires when the browser is closed.

    • Local storage stores data with no limit, while session storage has a limit of around 5MB.

    • Local storage data is available across all windows/tabs for that domain, while session storage data is only available wit...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. This was the Final round, it lasted for around 30 mins and the interviewer gave me a coding question to build a Countdown Timer app.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for Live coding round that's the important one.
Also prepare the questions based on HTML, CSS
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Java coding output predict related questions , try catch , string concept
  • Q2. Switch case
  • Q3. Inheritance
  • Q4. What challanges faced in automation
  • Ans. 

    Challenges in automation include dynamic UI elements, data synchronization, and maintenance of test scripts.

    • Dynamic UI elements can be challenging to automate as they may change frequently.

    • Data synchronization between different systems can be difficult to achieve in automation.

    • Maintenance of test scripts can be time-consuming, especially when application changes frequently.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. How to read the data and assert with db value in api automation
  • Ans. 

    To read data and assert with db value in API automation, use API response to extract data and compare with database query result.

    • Extract data from API response using JSON parsing libraries like Gson or Jackson

    • Execute database query to retrieve expected value

    • Compare the extracted data with the database value using assertion libraries like TestNG or JUnit

  • Answered by AI
  • Q2. 401 & 403 status code
Round 3 - HR 

(1 Question)

  • Q1. Managerial behavioural questions

Senior Analyst Interview Questions & Answers

FIS user image Sarita Rajaram Rahate

posted on 28 Feb 2025

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

I was interviewed in Aug 2024.

Round 1 - Technical 

(3 Questions)

  • Q1. Tell me about yourself?
  • Q2. What is corporate action?
  • Q3. Which date is important in divided?
Round 2 - HR 

(1 Question)

  • Q1. What's the reason of leaving previous organisation?
Round 3 - Face to face 

(1 Question)

  • Q1. Salary discussion
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What are the different sizes available for a virtual warehouse in Snowflake, and which sizes are currently being utilized in your current project?
  • Q2. What are stored procedures in Snowflake, and how did you utilize them?
Round 2 - Technical 

(2 Questions)

  • Q1. How did you verify the data after transferring it from one database to another?
  • Q2. What are the different types of duplicate checks that can be performed using SQL queries?
Round 3 - HR 

(2 Questions)

  • Q1. Are you open to relocating to Hyderabad?
  • Q2. What information do you have about ValueLabs?

Interview Preparation Tips

Topics to prepare for ValueLabs Senior Software Engineer interview:
  • Snowflake
  • SQL
  • Python
Contribute & help others!
anonymous
You can choose to be anonymous

OpenBet Interview FAQs

How many rounds are there in OpenBet interview?
OpenBet interview process usually has 1-2 rounds. The most common rounds in the OpenBet interview process are Technical, One-on-one Round and Coding Test.
How to prepare for OpenBet interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at OpenBet. The most common topics and skills that interviewers at OpenBet expect are Javascript, Linux, HTML, Hospitality and PHP.
What are the top questions asked in OpenBet interview?

Some of the top questions asked at the OpenBet interview -

  1. Explanation of Difference between C++ and J...read more
  2. Initial HR assessment, with one-on-one round with team member followed by Manag...read more
  3. Matrix related basic coding question was as...read more

Recently Viewed

INTERVIEWS

ABB

233 interviews

Tell us how to improve this page.

OpenBet Interview Process

based on 3 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Teleperformance Interview Questions
3.9
 • 1.8k Interviews
Nagarro Interview Questions
4.0
 • 759 Interviews
FIS Interview Questions
3.9
 • 481 Interviews
Dell Interview Questions
4.0
 • 385 Interviews
Dream11 Interview Questions
3.8
 • 36 Interviews
Junglee Games Interview Questions
3.1
 • 32 Interviews
Games24x7 Interview Questions
3.7
 • 19 Interviews
MyTeam11 Interview Questions
4.7
 • 3 Interviews
Sugal & Damani Interview Questions
4.0
 • 2 Interviews
View all

Fast track your campus placements

View all

OpenBet Reviews and Ratings

based on 16 reviews

3.2/5

Rating in categories

2.9

Skill development

3.4

Work-life balance

3.0

Salary

2.4

Job security

3.0

Company culture

2.8

Promotions

2.8

Work satisfaction

Explore 16 Reviews and Ratings
IC3-IT Infrastructure & Systems Administration

Bangalore / Bengaluru

6-10 Yrs

Not Disclosed

Explore more jobs
Software Quality Assurance Engineer
25 salaries
unlock blur

₹9.2 L/yr - ₹13 L/yr

Senior Software Quality Assurance Engineer
13 salaries
unlock blur

₹12.1 L/yr - ₹17.6 L/yr

Software Engineer
11 salaries
unlock blur

₹10.4 L/yr - ₹17 L/yr

Senior Software Engineer
11 salaries
unlock blur

₹14.5 L/yr - ₹25 L/yr

Technical Support Engineer
5 salaries
unlock blur

₹9.5 L/yr - ₹9.5 L/yr

Explore more salaries
Compare OpenBet with

Dream11

3.8
Compare

Nazara Technologies

3.0
Compare

Delta Corp

3.9
Compare

Sugal & Damani

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