Upload Button Icon Add office photos

Filter interviews by

Bitgo Infotech Full Stack Engineer Interview Questions and Answers

Updated 19 Feb 2024

Bitgo Infotech Full Stack Engineer Interview Experiences

1 interview found

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

I applied via Company Website and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Coding Test 

UI coding - react - useEffect - array (queue/stack)

Round 2 - Coding Test 

A graph question - API call - obeying rate limiting - caching

Round 3 - Case Study 

High level design - system design architecture - optimisation

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Jun 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Static, abstract vs interface
Round 2 - Technical 

(1 Question)

  • Q1. Databindings, CTE(sql)
Round 3 - Technical 

(1 Question)

  • Q1. Exceptionfilter, middleware etc
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion & roles and responsiblities
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

Basic coding question

Round 2 - Technical 

(2 Questions)

  • Q1. Basic Technical Question
  • Q2. Questions on oops concept
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via campus placement at Bannari Amman Institute of Technology, Sathyamangalam and was interviewed before Jan 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

THERE ARE QUANTS, REASONING AND VERBAL

Round 2 - HR 

(2 Questions)

  • Q1. MY ROLE IS PROGRAM ANALYST TRAINEE. IN HR ROUND THEY ASKED ME IN CORE: 1. WHAT IS FLIP FLOP 2. WHAT IS DIODE IN PROGRAMMING: 1. WHAT IS ENCAPSULATION. 2. WHAT IS ABSTRACTION. 3. WHAT IS INHERITANCE. 4. ...
  • Q2. AFTER TECHNICAL HR ROUND THERE IS PERSONAL HR ROUND. IN THAT ROUND THEY VERIFY OWR CERTIFICATE LIKE PAN, AADAAR CARD, 10TH AND 12TH CERTIFICATE.

Interview Preparation Tips

Interview preparation tips for other job seekers - PREPARE BASIC OOPS AND C PROGRAMMING QUESTION.
ALSO PREPARE SOME APTITUDE ALSO.
BASIC PROGRAMME LIKE PRINT 1 TO 100, PRINT FIBANOCCI SERIES, PRINT ADD NUMBER, ETC......
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Python langauge questions.
Round 2 - One-on-one 

(1 Question)

  • Q1. Related to projects mentioned in my Resume.
Interview experience
1
Bad
Difficulty level
Easy
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:
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 - Aptitude Test 

Aptitude test questions, let's test your knowledge about preposition

Round 3 - One-on-one 

(5 Questions)

  • Q1. Tell me about your self
  • Ans. 

    Sir/Madam. First of all, Thank you for giving me this opportunity to introduce my self. My Name Samiksha Dhalwar. I am from yavatmal. I did my bachelor's degree in BCA from CMCS college amravati University. Currently I am pursuing my master degree in MCA from GH Raisoni amravati University .I am skilled in react JS and have good knowledge of Java.I intern in growsoft Technologies LLP company as a Full stack developmen

  • Answered by Samiksha Dhalwar
  • Q2. What is your strength and weekness
  • Ans. 

    Sir,I am hardworking self motivated and optimistic person. I always over prepare for any work that is assigned to me

  • Answered by Samiksha Dhalwar
  • Q3. Why do you need job
  • Q4. What are your career goals
  • Q5. Why do you want to join in this company
  • Ans. 

    As s fresher, I need a platform to start my career. I have gone throught your company profile and learnt that your company encourage fresh talent and provide good work culture .By joining your company.

  • Answered by Samiksha Dhalwar
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Tell me about yourself
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

(9 Questions)

  • Q1. What is sychronization ?
  • Ans. 

    Synchronization is the process of coordinating multiple threads to ensure safe and consistent access to shared resources.

    • Synchronization is used to prevent race conditions and ensure thread safety.

    • It can be achieved using synchronized blocks or methods.

    • Synchronization can cause performance issues if not used properly.

    • Example: Synchronizing access to a shared counter variable in a multi-threaded application.

  • Answered by AI
  • Q2. What is encapsulation ?
  • Ans. 

    Encapsulation is the process of hiding implementation details and providing access to only necessary information.

    • Encapsulation is achieved through access modifiers such as public, private, and protected.

    • It helps in achieving data abstraction and information hiding.

    • Encapsulation provides better control over the data and prevents unauthorized access.

    • Example: A class with private variables and public methods to access the...

  • Answered by AI
  • Q3. What is interface in java ?
  • Ans. 

    An interface in Java is a collection of abstract methods and constants that can be implemented by a class.

    • Interfaces are used to achieve abstraction and provide a way to implement multiple inheritance in Java.

    • All methods in an interface are abstract by default and cannot have a body.

    • A class can implement multiple interfaces but can only extend one class.

    • Interfaces can also have default and static methods with a body.

    • Ex...

  • Answered by AI
  • Q4. What is collection framework?
  • Ans. 

    Collection framework is a set of classes and interfaces that provide a way to store and manipulate groups of objects.

    • It provides interfaces like List, Set, Queue, etc. for storing collections of objects.

    • It also provides classes like ArrayList, HashSet, PriorityQueue, etc. that implement these interfaces.

    • It allows easy manipulation of collections using methods like add, remove, contains, etc.

    • It provides algorithms like ...

  • Answered by AI
  • Q5. What is diffrence between Arraylist and vector ?
  • Ans. 

    ArrayList is not synchronized while Vector is synchronized.

    • ArrayList is faster than Vector as it is not synchronized.

    • Vector is thread-safe while ArrayList is not.

    • Vector is a legacy class while ArrayList is not.

    • Vector can grow by a specified amount while ArrayList grows by 50% of its size.

    • Example: ArrayList list = new ArrayList<>(); Vector vector = new Vector<>();

    • Example: list.add(1); vector.add(1);

    • Example: list.get(0);

  • Answered by AI
  • Q6. What are the legacy classes in java?
  • Ans. 

    Legacy classes in Java are the classes that have been replaced by newer versions but are still supported for backward compatibility.

    • Legacy classes are part of the Java API and are still supported for backward compatibility.

    • They have been replaced by newer versions but are still used in older applications.

    • Examples of legacy classes include Vector, Hashtable, and Enumeration.

    • Legacy classes are not recommended for use in ...

  • Answered by AI
  • Q7. What is joins in SQL ?
  • Ans. 

    Joins in SQL are used to combine data from two or more tables based on a related column.

    • Joins are used to retrieve data from multiple tables in a single query.

    • There are different types of joins such as inner join, left join, right join, and full outer join.

    • Inner join returns only the matching rows from both tables, left join returns all rows from the left table and matching rows from the right table, right join returns...

  • Answered by AI
  • Q8. What is autoboxing and auto-unboxing ?
  • Ans. 

    Autoboxing is the automatic conversion of primitive data types to their corresponding object wrapper classes.

    • Autoboxing allows primitive data types to be used as objects.

    • Auto-unboxing is the reverse process of autoboxing.

    • Autoboxing and auto-unboxing are performed automatically by the compiler.

    • Example: int i = 10; Integer j = i; // autoboxing

    • Example: Integer j = 10; int i = j; // auto-unboxing

  • Answered by AI
  • Q9. Difference between where clause and having clause in SQL ?
  • Ans. 

    Where clause filters rows before grouping, having clause filters groups after grouping.

    • Where clause is used to filter rows based on a condition before grouping.

    • Having clause is used to filter groups based on a condition after grouping.

    • Where clause is used with SELECT, UPDATE, DELETE statements.

    • Having clause is used with SELECT statement and GROUP BY clause.

    • Where clause cannot contain aggregate functions.

    • Having clause c...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - HR 

(5 Questions)

  • Q1. Tell me about your self. Why are you interested in this company/role?
  • Q2. Do you have any questions for us
  • Q3. Greatest professional achievement so far
  • Q4. Short team and long team goals
  • Q5. Your strength & weakness

Interview Preparation Tips

Topics to prepare for Amazon Mern Full Stack Developer interview:
  • Core java SQL
  • SQL
  • MongoDB
  • Git hub
  • Spring Boot
  • JDBC
Interview preparation tips for other job seekers - Self-assessment/ Research/online presence,/follow up......
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jul 2023. There were 4 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 - Aptitude Test 

Quantitive aptitude, reasoning

Round 3 - HR 

(3 Questions)

  • Q1. Tell me about yourself
  • Q2. What is your weakness and strength?
  • Q3. Why should I hire you
Round 4 - Technical 

(1 Question)

  • Q1. Programming related questions

Bitgo Infotech Interview FAQs

How many rounds are there in Bitgo Infotech Full Stack Engineer interview?
Bitgo Infotech interview process usually has 3 rounds. The most common rounds in the Bitgo Infotech interview process are Coding Test and Case Study.

Tell us how to improve this page.

Bitgo Infotech Full Stack Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
View all
Compare Bitgo Infotech with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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