Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by OneBanc Technologies Team. If you also belong to the team, you can get access from here

OneBanc Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

OneBanc Technologies Associate Android Developer Interview Questions and Answers

Updated 1 Aug 2022

OneBanc Technologies Associate Android Developer Interview Experiences

1 interview found

Round 1 - HR 

(1 Question)

  • Q1. Introduction Call, Background check
Round 2 - Coding Test 

General Aptitude Question

Round 3 - Technical 

(1 Question)

  • Q1. Android In Depth Question With Interviewer
Round 4 - One-on-one 

(1 Question)

  • Q1. On-Site Visit for Company Culture and 3 days evaluation task, android

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through the Android Code implementation part in detail, Implement fast on 3 Days Evaluation
All the best.

Interview questions from similar companies

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

I applied via Referral and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Coding Test 

Build a clone of Google Photos app

I applied via Naukri.com and was interviewed in Apr 2020. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Why dagger is required?
  • Ans. 

    Dagger is required for dependency injection in Android development.

    • Dagger helps in managing dependencies and reduces boilerplate code.

    • It provides compile-time safety and improves code readability.

    • Dagger also helps in testing and modularizing the codebase.

    • It is widely used in Android development for building scalable and maintainable apps.

  • Answered by AI
  • Q2. How garbage collector works?
  • Ans. 

    The garbage collector in Android automatically manages memory by reclaiming unused objects.

    • Garbage collector identifies objects that are no longer referenced by the program.

    • It frees up memory occupied by these objects, making it available for future use.

    • The process involves marking objects as reachable or unreachable, and then reclaiming memory from unreachable objects.

    • Garbage collection can be triggered automatically ...

  • Answered by AI
  • Q3. How to set equal spacing between childs of constraint layout?
  • Ans. 

    To set equal spacing between childs of constraint layout, use the chain style property.

    • Create a chain of the views that need equal spacing using the chain style property.

    • Set the chain style to spread inside the constraint layout.

    • Adjust the margins of the views to control the spacing.

    • Use the layout_constraintHorizontal_chainStyle or layout_constraintVertical_chainStyle attribute to set the chain style.

    • Example: app:layou

  • Answered by AI
  • Q4. Fragment life cycle

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared and confident, keep practicing

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Coding Test 

Develop a Movie SDK that will utilize a provided API to retrieve movie details.

Interview Preparation Tips

Topics to prepare for Razorpay Android Developer interview:
  • Android SDK
  • Retrofit
  • Module
  • XML
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Assignment 

Android Assignment - Create an android project for a given scenario.

Round 2 - Technical 

(1 Question)

  • Q1. Questions related to Android & Kotlin
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

Leet code problem hard and some times medium questions

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. DSA: Put zeroes to end in an array
  • Ans. 

    Move all zeroes to the end of an array of strings.

    • Iterate through the array and keep track of the count of zeroes encountered.

    • Swap non-zero elements with the first zero encountered to move zeroes to the end.

  • Answered by AI
  • Q2. What is context? Type of context in android, what are the differences
  • Ans. 

    Context in Android refers to the current state of the application. There are different types of context in Android with varying scopes and lifecycles.

    • Context is an abstract class in Android that allows access to application-specific resources and classes.

    • There are three main types of context in Android: Application Context, Activity Context, and Service Context.

    • Application Context is tied to the lifecycle of the applic...

  • Answered by AI

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 45 Minutes
Round difficulty - Easy

  • Q1. 

    BST Iterator Problem Statement

    You are tasked with creating a class named BSTIterator that acts as an iterator for the inorder traversal of a binary search tree. Implement the following functions:

    1. BST...
  • Ans. 

    Create a BSTIterator class for inorder traversal of a binary search tree.

    • Implement a constructor that takes the root of the binary search tree and initializes the iterator.

    • Implement next() function to return the next smallest element in the inorder traversal.

    • Implement hasNext() function to check if there is a next element in the inorder traversal.

    • Traverse the binary search tree in inorder to get the desired output.

  • Answered by AI
  • Q2. 

    Integer to Roman Conversion

    Given an integer N, convert it to its corresponding Roman numeral representation. Roman numerals comprise seven symbols: I, V, X, L, C, D, and M.

    Example:

    Input:
    N = 2
    Outp...
  • Ans. 

    Convert an integer to its corresponding Roman numeral representation.

    • Create a mapping of integer values to Roman numeral symbols.

    • Iterate through the mapping in descending order of values and build the Roman numeral representation.

    • Subtract the largest possible value from the integer at each step and append the corresponding Roman numeral symbol.

    • Repeat until the integer becomes 0.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 45 Minutes
Round difficulty - Medium

  • Q1. 

    Cube Sum Pairs Problem Statement

    Given a positive integer N, find the number of ways to express N as a sum of cubes of two integers, A and B, such that:

    N = A^3 + B^3

    Ensure you adhere to the following c...

  • Ans. 

    The problem involves finding the number of ways to express a given positive integer as a sum of cubes of two integers.

    • Iterate through all possible values of A and B within the given constraints.

    • Check if A^3 + B^3 equals the given N, increment the count if true.

    • Handle the case where A = B separately to avoid counting duplicates.

  • Answered by AI
  • Q2. 

    Colorful Knapsack Problem

    You are given a set of 'N' stones, each with a specific weight and color. The goal is to fill a knapsack with exactly 'M' stones, choosing one stone of each color, so that the to...

  • Ans. 

    The Colorful Knapsack Problem involves selecting one stone of each color to fill a knapsack with a given weight capacity, minimizing unused capacity.

    • Iterate through the stones and keep track of the minimum weight for each color.

    • Use dynamic programming to find the optimal solution by considering all possible combinations.

    • Handle cases where the knapsack cannot be filled under the given conditions by returning -1.

    • In the g...

  • Answered by AI
Round 3 - HR 

Round duration - 15 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Android Developer in NoidaEligibility criteriaAbove 7 CGPA , Previous Android Development Experience RequiredPaytm (One97 Communications Limited) interview preparation:Topics to prepare for the interview - Data structures, Algorithms, OOPS, Android, OSTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Clear all the topics related to Android with deep details about every topics.
Tip 2 : Practice DSA and algorithms from GFG, CodeStudio daily.
Tip 3 : Dry run code before running the code.

Application resume tips for other job seekers

Tip 1 : Mention your open source contributions/ participation in hackathons.
Tip 2 : Provide links to your projects.

Final outcome of the interviewRejected

Skills evaluated in this interview

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

(1 Question)

  • Q1. Data structures and kotlin basics to advance
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - Aptitude Test 

1hr aptitude + coding

Contribute & help others!
anonymous
You can choose to be anonymous

OneBanc Technologies Interview FAQs

How many rounds are there in OneBanc Technologies Associate Android Developer interview?
OneBanc Technologies interview process usually has 4 rounds. The most common rounds in the OneBanc Technologies interview process are HR, Coding Test and Technical.
What are the top questions asked in OneBanc Technologies Associate Android Developer interview?

Some of the top questions asked at the OneBanc Technologies Associate Android Developer interview -

  1. On-Site Visit for Company Culture and 3 days evaluation task, andr...read more
  2. Android In Depth Question With Intervie...read more
  3. Introduction Call, Background ch...read more

Recently Viewed

INTERVIEWS

WebKorps Solutions

No Interviews

INTERVIEWS

Council Of Architecture

No Interviews

INTERVIEWS

MSV International

No Interviews

INTERVIEWS

WebKorps Solutions

No Interviews

INTERVIEWS

OneBanc Technologies

No Interviews

INTERVIEWS

OneBanc Technologies

No Interviews

INTERVIEWS

BSH Home Appliances Group

No Interviews

INTERVIEWS

Grazitti Interactive

No Interviews

INTERVIEWS

Grazitti Interactive

No Interviews

INTERVIEWS

Council Of Architecture

No Interviews

Tell us how to improve this page.

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 752 Interviews
PhonePe Interview Questions
4.0
 • 300 Interviews
PayPal Interview Questions
3.9
 • 207 Interviews
AmbitionBox Interview Questions
4.9
 • 151 Interviews
Razorpay Interview Questions
3.6
 • 148 Interviews
Cogoport Interview Questions
2.9
 • 53 Interviews
Mobikwik Interview Questions
3.7
 • 47 Interviews
MyCaptain Interview Questions
3.2
 • 40 Interviews
HyperVerge Interview Questions
4.3
 • 25 Interviews
Arzooo.com Interview Questions
2.4
 • 23 Interviews
View all
Product Manager
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Front end Developer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Android Developer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Full Stack Developer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Manager Marketing
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare OneBanc Technologies with

Razorpay

3.6
Compare

Paytm

3.3
Compare

PhonePe

4.0
Compare

Mobikwik

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