Upload Button Icon Add office photos
Engaged Employer

i

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

Easypolicy.com Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Easypolicy.com Android Developer Interview Questions and Answers

Updated 2 Feb 2024

Easypolicy.com Android Developer Interview Experiences

1 interview found

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

I applied via Referral and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Walk me through your journey for choosing Android app development.
Round 2 - One-on-one 

(2 Questions)

  • Q1. How do we connect web services in apps?
  • Ans. 

    Web services can be connected in apps using APIs and HTTP requests.

    • Use APIs to access web services and retrieve data.

    • Send HTTP requests to the web service's endpoint to perform actions.

    • Parse the response data received from the web service.

    • Handle errors and exceptions during the connection process.

  • Answered by AI
  • Q2. Talk about MVVM architecture
  • Ans. 

    MVVM is an architectural pattern that separates the user interface from the business logic by using a data-binding approach.

    • MVVM stands for Model-View-ViewModel

    • Model represents the data and business logic

    • View represents the user interface

    • ViewModel acts as a mediator between the Model and View

    • Data-binding is used to automatically update the View when the Model changes

    • MVVM promotes separation of concerns and testability

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a very friendly interview and wasn't though to crack

Skills evaluated in this interview

Interview questions from similar companies

I was interviewed in May 2022.

Round 1 - Coding Test 

(2 Questions)

Round duration - 75 Minutes
Round difficulty - Medium

The round consisted of 2 Coding based based questions.
These question were easy for as I have already done this while preparing.

  • Q1. 

    Flip Equivalent Binary Tree Problem

    Determine whether two binary trees, given by their roots 'ROOT1' and 'ROOT2', are flip equivalent. A tree can be transformed into a flip equivalent through any number o...

  • Ans. 

    The problem is to determine if two binary trees are flip equivalent after performing flip operations on one of the trees.

    • Perform a depth-first search (DFS) on both trees simultaneously

    • At each node, check if the values are equal and the left and right subtrees are either both null or both not null

    • If the above conditions are met, recursively check the flip equivalence of the left and right subtrees

    • If any of the condition...

  • Answered by AI
  • Q2. 

    Split Array Into Increasing Subsequences Problem Statement

    You are provided with an integer array ARR of size N sorted in ascending order. Your task is to determine if it is possible to split this array i...

  • Ans. 

    The task is to determine if an integer array can be split into one or more increasing subsequences with a length of at least 3.

    • Check if the array can be split into increasing subsequences by iterating through the array.

    • Keep track of the current subsequence and its length while iterating.

    • If the difference between the current element and the previous element is not 1, start a new subsequence.

    • If the length of any subseque...

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

The interview started a bit late as I it to be at 11:30 am but started at 12:15pm So Had to wait. Apart from these the overall experience was great and the interviewer was also kind and had a smiling face.

  • Q1. 

    Ninja and Alternating Largest Problem Statement

    Ninja is given a sequence of numbers and needs to rearrange them so that every second element is greater than its neighbors on both sides.

    Example:

    Input:
    ...
  • Ans. 

    The task is to rearrange the given array such that every second element is greater than its left and right element.

    • Iterate through the array and check if every second element is greater than its left and right element

    • If not, swap the current element with its adjacent element to satisfy the condition

    • Continue this process until the entire array satisfies the condition

    • Return 1 if the array satisfies the condition, else re

  • Answered by AI
Round 3 - Video Call 

Round duration - 30 Minutes
Round difficulty - Easy

10:30 PM 
Interviewer was Cool.

Round 4 - HR 

Round duration - 5 minutes
Round difficulty - Easy

At 10:00 am

Interview Preparation Tips

Eligibility criteriaNo criteria But only 8+ plus CGPA were eventually shortlisted on basis of resumeAcko interview preparation:Topics to prepare for the interview - DSA, DBMS, Puzzles, OS, System DesignTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Never never try to cheat in online interview the interviewer will definitely get to know.
Tip 2 : Psuedo code presentation matters a lot so name Your variable properly and with proper indentation.
Tip 3 : Keep on trying even if You feel that's not the right answer so at least put that idea forward.
Tip 4 : Do Leetcode medium questions as much as possible As they are mostly asked in Interviews.

Application resume tips for other job seekers

Tip 1 : Avoid unnecessary details on Resume
Tip 2 : Make It look clean and also keep it of one page

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed before Jun 2023.

Round 1 - One-on-one 

(2 Questions)

  • Q1. DSA Round & Introduction Round
  • Q2. DP Question related to subsequence
Round 2 - Technical 

(2 Questions)

  • Q1. Design Parking Lot
  • Ans. 

    Design a parking lot system with multiple levels and spots for cars.

    • Create a class for ParkingLot with attributes like levels, spots per level, etc.

    • Implement methods for parking a car, removing a car, checking availability, etc.

    • Consider implementing a ticketing system for tracking parked cars.

    • Utilize data structures like arrays, lists, or maps to manage parking spots efficiently.

  • Answered by AI
  • Q2. Sort Numbers with large file
  • Ans. 

    Use external sorting algorithm like merge sort to efficiently sort numbers in a large file.

    • Break the large file into smaller chunks that can fit into memory

    • Sort each chunk individually using a sorting algorithm like merge sort

    • Merge the sorted chunks back together to get the final sorted result

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. What is pointer
  • Ans. 

    A pointer is a variable that stores the memory address of another variable.

    • Pointers are used to access and manipulate memory directly.

    • They are commonly used in programming languages like C and C++.

    • Example: int *ptr; // declares a pointer to an integer variable

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Mar 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference b/w map and array in CPP. What are generators in Python. What is Polynomial Regression? Normalisation in DBMS.
  • Ans. 

    Map and array in CPP are both data structures, but map is a key-value pair container while array is a collection of elements with a fixed size.

    • Map in CPP is a container that stores elements in key-value pairs, allowing fast lookups based on keys.

    • Array in CPP is a collection of elements of the same data type, stored in contiguous memory locations.

    • Generators in Python are functions that allow you to iterate over a sequen...

  • Answered by AI
  • Q2. Realtional Algebra in DBMS
  • Ans. 

    Relational Algebra is a procedural query language used to query databases in DBMS.

    • Relational Algebra is used to perform basic operations like selection, projection, join, etc. on relations.

    • It helps in retrieving specific information from databases based on certain conditions.

    • Examples of operations in Relational Algebra include Union, Intersection, Difference, Cartesian Product, etc.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Expect that all the questions will be from the resume.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

All aptitude type questions as well as core computer science subject questions comes

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

Profit loss , number system, code decode

Round 2 - Technical 

(1 Question)

  • Q1. What is DDL, DML, DQL
  • Ans. 

    DDL stands for Data Definition Language, DML stands for Data Manipulation Language, and DQL stands for Data Query Language.

    • DDL is used to define the structure of database objects such as tables, indexes, and views.

    • DML is used to manipulate data in the database, such as inserting, updating, and deleting records.

    • DQL is used to retrieve data from the database using queries.

    • Examples: CREATE TABLE is a DDL statement, INSERT...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Basic hr question like where are you from what is your expirence and expected salary
Round 2 - Technical 

(2 Questions)

  • Q1. It was a video call round with Sr. iOS Dev. Questions were more from the the side of implementation of mvvm Architecture. All the questions were around design pattern and architecture. Higher order functio...
  • Q2. Higher order function

Interview Preparation Tips

Topics to prepare for Tata AIG IOS Developer interview:
  • higher order function
  • reative programing
  • MVVM
  • System Design
  • Design Patterns
Interview preparation tips for other job seekers - For technical round must prepare for mvvm architecture, design pattern. Make at least one project using the mvvm, you should be good to go. be true to your resume, have knowledge about higher order function, design patterns.

I applied via Campus Placement and was interviewed before Feb 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

Practice everyday

Round 2 - Group Discussion 

Just share your basic thought about the topic but dont shout on Gd.

Round 3 - One-on-one 

(2 Questions)

  • Q1. Basic questions they try to know whats your thought about currnent affairs and JD.
  • Q2. All about general insurance
Round 4 - HR 

(1 Question)

  • Q1. Why should we hire you?

Interview Preparation Tips

Interview preparation tips for other job seekers - Hr round they will ask what is current pay is if you are experienced and other staff like that.

I applied via Company Website and was interviewed before May 2021. 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 Resume tips
Round 2 - Aptitude Test 
Round 3 - Assignment 

United India insurence company good work company all prodect sales achieved target award good parformance customer service.

Interview Preparation Tips

Interview preparation tips for other job seekers - General insurance companies target all prodect sales work customer service all over work this company.
Contribute & help others!
anonymous
You can choose to be anonymous

Easypolicy.com Interview FAQs

How many rounds are there in Easypolicy.com Android Developer interview?
Easypolicy.com interview process usually has 2 rounds. The most common rounds in the Easypolicy.com interview process are Technical and One-on-one Round.
How to prepare for Easypolicy.com Android Developer 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 Easypolicy.com. The most common topics and skills that interviewers at Easypolicy.com expect are Android.
What are the top questions asked in Easypolicy.com Android Developer interview?

Some of the top questions asked at the Easypolicy.com Android Developer interview -

  1. How do we connect web services in ap...read more
  2. Talk about MVVM architect...read more

Recently Viewed

SALARIES

InsuranceDekho

SALARIES

Azure Power

SALARIES

Azure Power

SALARIES

Azure Power

INTERVIEWS

Azure Power

No Interviews

INTERVIEWS

Easypolicy.com

No Interviews

SALARIES

Azure Power

SALARIES

Gupta Power Infrastructure

SALARIES

Cogent E Services

SALARIES

SAEL Industries Limited

Tell us how to improve this page.

Easypolicy.com Android Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Easypolicy.com Android Developer Salary
based on 4 salaries
₹4.5 L/yr - ₹4.5 L/yr
23% less than the average Android Developer Salary in India
View more details

Easypolicy.com Android Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Sales Executive
42 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Acquisition Specialist
31 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
18 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Executive
13 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Easypolicy.com with

Coverfox

4.2
Compare

ACKO

3.7
Compare

Reliance General Insurance

3.7
Compare

ICICI Lombard General Insurance Company

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