Upload Button Icon Add office photos

Filter interviews by

QBurst Technologies Engineer Interview Questions, Process, and Tips

Updated 23 Aug 2024

Top QBurst Technologies Engineer Interview Questions and Answers

QBurst Technologies Engineer Interview Experiences

3 interviews found

Engineer Interview Questions & Answers

user image Nishant Rai

posted on 23 Aug 2024

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

(3 Questions)

  • Q1. Memory leak in Android?
  • Ans. 

    Memory leak in Android refers to a situation where an application uses memory inefficiently, causing unused memory to accumulate and not be released.

    • Memory leaks can occur when objects are not properly released after use, leading to a buildup of unused memory.

    • Common causes of memory leaks in Android include holding onto references to objects that are no longer needed, using static variables in a way that prevents them ...

  • Answered by AI
  • Q2. Garbage collection basics.
  • Q3. Pass data between fragments in Android
  • Ans. 

    Use ViewModel to share data between fragments in Android

    • Create a ViewModel class to hold the data to be shared

    • Observe the ViewModel in each fragment to receive updates

    • Use LiveData to ensure data is updated in real-time

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Implement a Hash Map
  • Ans. 

    A Hash Map is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.

    • Use an array to store the key-value pairs

    • Implement a hash function to map keys to indices in the array

    • Handle collisions by using techniques like chaining or open addressing

  • Answered by AI
  • Q2. Activity lifecycle in Android
  • Ans. 

    Activity lifecycle in Android refers to the different states an activity goes through during its lifetime.

    • There are several states in the activity lifecycle, including onCreate, onStart, onResume, onPause, onStop, and onDestroy.

    • Activities can transition between these states based on user interactions or system events.

    • Understanding the activity lifecycle is crucial for managing resources and maintaining a smooth user ex...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with Android fundamentals

Skills evaluated in this interview

Engineer Interview Questions & Answers

user image Anonymous

posted on 21 Aug 2024

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

I applied via Company Website and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Javascript coding question
  • Q2. Output prediction
  • Q3. Basic react and javascript questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Scenario based questions

Engineer Interview Questions Asked at Other Companies

asked in Eaton
Q1. ❖ If a team member is unable to carry out his work, he is doing i ... read more
Q2. What is inheritance? Show me by a code that shouldn't be a pseudo ... read more
asked in Qualcomm
Q3. What is Min-Cut placement algorithm? Given some block sizes, use ... read more
Q4. What is neutonian fluid ? , Stages of fracture, working of engine ... read more
Q5. What is normalization? What do you mean by 1NF, 2NF, 3NF, 4NF?

Engineer Interview Questions & Answers

user image Anonymous

posted on 29 Sep 2022

I applied via Referral and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Pure Technical Questions in the domain you are applying for.
Round 2 - One-on-one 

(1 Question)

  • Q1. Typical Managerial round questions pike how to tackle different scenarios

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are technically strong, you can easily clear the interview. Otherwise no chance.

Interview questions from similar companies

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

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

Round 1 - Coding Test 

3 hours - Coding questions and Aptitude test

Round 2 - Aptitude Test 

Aptitude questions - normal RS aggarwal type

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

I applied via Campus Placement

Round 1 - Aptitude Test 

Question related to operating system and computer network

Round 2 - Technical 

(1 Question)

  • Q1. Traverse all child nodes in tree
  • Ans. 

    Traverse all child nodes in a tree data structure

    • Use depth-first or breadth-first traversal algorithms

    • Recursively visit each child node starting from the root node

    • Consider using a stack or queue data structure for traversal

    • Example: Traverse all nodes in a binary tree

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Question related to cloud and oops
Round 4 - Technical 

(1 Question)

  • Q1. Question related to my background and how web site work
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

1st round is aptitude and pesudocode

Round 2 - Technical 

(2 Questions)

  • Q1. Mostly python questions
  • Q2. List questions and basic to mediumprogram

Interview Preparation Tips

Interview preparation tips for other job seekers - Moderate interview
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

In first round 4 coding question like 1 dsa 2 database and one is api and question is very simple . coding round was conducted in hackerrank

Round 2 - Technical 

(2 Questions)

  • Q1. DSA QUESTION LIKE TREE AND GRAPH
  • Q2. DP AND SORTING APPROACH
Round 3 - Coding Test 

Again same but dsa question and oops concept in deep level

Interview Preparation Tips

Interview preparation tips for other job seekers - good knowledge in dsa , database , programming thats it
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Rest Apis questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Core java and OOPS and LLD

Interview Preparation Tips

Interview preparation tips for other job seekers - Good understanding of Core language and its framework

Software Developer Interview Questions & Answers

Amadeus user image Aswini Ramachandran

posted on 2 Oct 2024

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

(2 Questions)

  • Q1. Something based on hashet
  • Q2. Same with this too
Round 2 - Aptitude Test 

Basic questions were given..bar graphs,pie charts

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

(1 Question)

  • Q1. What is Oops concept?
  • Ans. 

    Oops concept stands for Object-Oriented Programming concepts which include principles like inheritance, encapsulation, polymorphism, and abstraction.

    • Oops concept is a programming paradigm that focuses on objects and classes.

    • It includes principles like inheritance, where a class can inherit properties and behaviors from another class.

    • Encapsulation is another principle where data is wrapped within a class and can only be...

  • Answered by AI

QBurst Technologies Interview FAQs

How many rounds are there in QBurst Technologies Engineer interview?
QBurst Technologies interview process usually has 2-3 rounds. The most common rounds in the QBurst Technologies interview process are One-on-one Round, Technical and Resume Shortlist.
How to prepare for QBurst Technologies 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 QBurst Technologies. The most common topics and skills that interviewers at QBurst Technologies expect are Automation, Testing, Creative, Devops and GCP.
What are the top questions asked in QBurst Technologies Engineer interview?

Some of the top questions asked at the QBurst Technologies Engineer interview -

  1. Pass data between fragments in Andr...read more
  2. Memory leak in Andro...read more
  3. Activity lifecycle in Andr...read more

Tell us how to improve this page.

QBurst Technologies Engineer Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Engineer Interview Questions from Similar Companies

TCS Engineer Interview Questions
3.7
 • 21 Interviews
Wipro Engineer Interview Questions
3.7
 • 4 Interviews
View all

Fast track your campus placements

View all
QBurst Technologies Engineer Salary
based on 61 salaries
₹4.1 L/yr - ₹9.8 L/yr
28% more than the average Engineer Salary in India
View more details

QBurst Technologies Engineer Reviews and Ratings

based on 7 reviews

4.2/5

Rating in categories

4.5

Skill development

4.5

Work-life balance

4.2

Salary

4.5

Job security

4.4

Company culture

4.1

Promotions

3.9

Work satisfaction

Explore 7 Reviews and Ratings
Senior Software Engineer
245 salaries
unlock blur

₹5.4 L/yr - ₹18.1 L/yr

Senior Engineer
226 salaries
unlock blur

₹6.1 L/yr - ₹15.6 L/yr

Software Engineer
157 salaries
unlock blur

₹3.8 L/yr - ₹13 L/yr

Lead Engineer
143 salaries
unlock blur

₹9.2 L/yr - ₹24 L/yr

Senior QA Engineer
74 salaries
unlock blur

₹5.7 L/yr - ₹12.5 L/yr

Explore more salaries
Compare QBurst Technologies with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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