Upload Button Icon Add office photos

BitGo

Compare button icon Compare button icon Compare
4.7

based on 4 Reviews

Filter interviews by

BitGo Senior Software Engineer Interview Questions and Answers

Updated 3 Nov 2024

BitGo Senior Software Engineer Interview Experiences

5 interviews found

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

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

Round 1 - Coding Test 

Coding question on graph. Given each bus routes, source and destination, find the least number of buses to each from source to target.

Round 2 - Technical 

(1 Question)

  • Q1. Snake and ladder machine coding
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

I don’t remember the question

Round 2 - One-on-one 

(1 Question)

  • Q1. Easy leetcode questions . There were 2
Round 3 - Technical 

(1 Question)

  • Q1. High level system design: wallet
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Work Experience
Round 2 - Coding Test 

Question on Linked List

Round 3 - Technical 

(1 Question)

  • Q1. Work Experince and scalability
Round 4 - HR 

(1 Question)

  • Q1. Behavioural questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Undirected graph question to be solved using DFS.

BitGo interview questions for designations

 Senior Software

 (1)

 Software Development Engineer II

 (2)

 Software Developer

 (1)

 Software Development Staff Engineer

 (1)

 Staff Engineer

 (1)

 Senior Backend Developer

 (1)

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I was interviewed in Jun 2024.

Round 1 - Coding Test 

1 leetcode medium question + 1 easy question and time was 60 minutes

Interview Preparation Tips

Interview preparation tips for other job seekers - Their process is very slow and takes more than 4 weeks

Interview questions from similar companies

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

(2 Questions)

  • Q1. Explian oops concepts
  • Ans. 

    Object-oriented programming concepts that focus on classes and objects for better code organization and reusability.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Ability of a class to inherit properties and behavior from another class.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation det...

  • Answered by AI
  • Q2. Types of waits in selenium
  • Ans. 

    Types of waits in Selenium include implicit, explicit, and fluent waits.

    • Implicit wait: Waits for a certain amount of time before throwing a NoSuchElementException.

    • Explicit wait: Waits for a certain condition to occur before proceeding further in the code.

    • Fluent wait: Waits for a condition to be true with a specified frequency of checking.

    • Example: driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Salary dsicussion
  • Q2. Previous company details

Skills evaluated in this interview

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

(5 Questions)

  • Q1. What are TMG events?
  • Ans. 

    TMG events refer to events related to Threat Management Gateway, a Microsoft network security product.

    • TMG events are generated by Threat Management Gateway (TMG), a network security product developed by Microsoft.

    • These events provide information about network traffic, security threats, and system health.

    • Examples of TMG events include firewall rule violations, malware detection, and system errors.

  • Answered by AI
  • Q2. Events in interactive report?
  • Ans. 

    Events in interactive report refer to user interactions like clicking, hovering, or scrolling.

    • Events can trigger actions or functions in the report.

    • Common events include click, hover, scroll, keypress, etc.

    • Events can be used to enhance user experience and interactivity.

    • Examples: Clicking on a data point to view more details, hovering over a chart to see tooltips.

  • Answered by AI
  • Q3. Difference between RFC and BAPI
  • Ans. 

    RFC is a protocol for requesting services from a server, while BAPI is a specific type of RFC used in SAP systems.

    • RFC stands for Remote Function Call and is a protocol used to request services from a server over a network.

    • BAPI stands for Business Application Programming Interface and is a specific type of RFC used in SAP systems for integrating external applications with SAP.

    • RFC can be used in various systems and techn...

  • Answered by AI
  • Q4. What is ABAP on HANA
  • Ans. 

    ABAP on HANA is a programming language that combines ABAP with the in-memory database technology of SAP HANA.

    • ABAP on HANA allows developers to leverage the speed and power of SAP HANA for their ABAP-based applications.

    • It enables real-time analytics, predictive modeling, and faster data processing.

    • Developers can use ABAP on HANA to optimize existing ABAP code for better performance.

    • It provides a seamless integration bet...

  • Answered by AI
  • Q5. Limitations of CDs Views
  • Ans. 

    CDs Views have limitations in terms of performance and scalability.

    • Limited support for complex queries and joins

    • Performance degradation with large datasets

    • Scalability issues when handling high volume of data

    • Difficulty in maintaining and updating views as database schema changes

  • Answered by AI

Skills evaluated in this interview

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

Related to Dp and other questions is related to array like reverse and find duplicate in an array, String matching Questions

I applied via Naukri.com and was interviewed in Jul 2022. There was 1 interview round.

Round 1 - Technical 

(7 Questions)

  • Q1. What are indexes in the database? what is the difference between clustered and non-clustered indexes?
  • Ans. 

    Indexes are used to improve database performance. Clustered indexes determine the physical order of data, while non-clustered indexes do not.

    • Indexes are used to speed up data retrieval operations in a database.

    • Clustered indexes determine the physical order of data in a table, while non-clustered indexes do not.

    • A table can have only one clustered index, but multiple non-clustered indexes.

    • Clustered indexes are generally ...

  • Answered by AI
  • Q2. Write a query to delete duplicate rows from a table.
  • Ans. 

    Query to delete duplicate rows from a table

    • Use GROUP BY clause to group the rows by their unique values

    • Use HAVING clause to filter out the groups with count greater than 1

    • Use DELETE statement to delete the duplicate rows

  • Answered by AI
  • Q3. Class A { public string A() { return "hello"; } } what is wrong with above code?
  • Q4. What is a singleton pattern and how to implement it?
  • Ans. 

    Singleton pattern restricts the instantiation of a class to a single instance and provides a global point of access to it.

    • Create a private constructor to restrict instantiation of the class

    • Create a private static instance of the class

    • Create a public static method to access the instance

    • Ensure thread safety if necessary

    • Examples: Database connection, Logger, Configuration settings

  • Answered by AI
  • Q5. How do you handle exceptions in stored procedures?
  • Ans. 

    Handle exceptions in stored procedures by using TRY-CATCH blocks.

    • Use TRY-CATCH blocks to catch and handle exceptions

    • Log the error message and severity level

    • Rollback the transaction if necessary

    • Rethrow the error if it cannot be handled

    • Use RAISERROR to raise custom error messages

  • Answered by AI
  • Q6. Explain SOLID principles.
  • Ans. 

    SOLID principles are a set of five design principles that help in creating maintainable and scalable software.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open-Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Subtypes should be substitutable for their base types.

    • I - Interface Segregation Principle: C...

  • Answered by AI
  • Q7. Difference between throw and throw exception?
  • Ans. 

    throw is used to throw an exception while throw exception is used to throw a specific exception.

    • throw is used to throw any type of exception while throw exception is used to throw a specific type of exception.

    • throw exception is followed by the type of exception that needs to be thrown.

    • throw can be used to throw any object while throw exception can only be used to throw an exception object.

    • Example: throw new Exception("

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You need to give quite a few interviews to be prepared.

Skills evaluated in this interview

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

I was interviewed before Jun 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Longest Palindromic Substring
  • Ans. 

    Find the longest palindromic substring in a given string.

    • Use dynamic programming to check if substrings are palindromes.

    • Start with single characters as potential palindromes and expand outwards.

    • Keep track of the longest palindrome found so far.

  • Answered by AI
  • Q2. Find the Kth largest integer in the Array
  • Ans. 

    Find the Kth largest integer in the Array

    • Sort the array in descending order

    • Return the element at index K-1

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Design youtube live streaming
  • Ans. 

    Design a system for live streaming on YouTube platform.

    • Use RTMP protocol for streaming live video to YouTube servers

    • Implement a live chat feature for viewers to interact with the streamer

    • Include options for viewers to like, share, and subscribe during the live stream

    • Provide analytics for streamers to track viewership and engagement

    • Ensure scalability to handle high traffic during popular live streams

  • Answered by AI

Skills evaluated in this interview

BitGo Interview FAQs

How many rounds are there in BitGo Senior Software Engineer interview?
BitGo interview process usually has 2-3 rounds. The most common rounds in the BitGo interview process are Coding Test, Technical and One-on-one Round.
How to prepare for BitGo Senior Software Engineer 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 BitGo. The most common topics and skills that interviewers at BitGo expect are Financial Services, GIT, Github, Computer science and Financial Markets.
What are the top questions asked in BitGo Senior Software Engineer interview?

Some of the top questions asked at the BitGo Senior Software Engineer interview -

  1. Undirected graph question to be solved using D...read more
  2. Easy leetcode questions . There wer...read more
  3. Snake and ladder machine cod...read more

Tell us how to improve this page.

BitGo Senior Software Engineer Interview Process

based on 5 interviews in last 1 year

1 Interview rounds

  • Coding Test Round
View more

People are getting interviews through

based on 2 BitGo interviews
Job Portal
100%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
BitGo Senior Software Engineer Salary
based on 4 salaries
₹42 L/yr - ₹60 L/yr
219% more than the average Senior Software Engineer Salary in India
View more details
Data Scientist
5 salaries
unlock blur

₹17 L/yr - ₹28 L/yr

Senior Software Engineer
4 salaries
unlock blur

₹42 L/yr - ₹60 L/yr

Engineering Manager
3 salaries
unlock blur

₹74 L/yr - ₹80 L/yr

Explore more salaries
Compare BitGo with

Coinbase

3.5
Compare

Gemini Communication

4.7
Compare

Binance

3.6
Compare

Huobi

3.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview