Upload Button Icon Add office photos
Engaged Employer

i

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

India App Developer Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

India App Developer Interview Questions, Process, and Tips

Updated 9 Aug 2021

India App Developer Interview Experiences

1 interview found

I applied via Referral and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What are the Features of Android Architecture?
  • Ans. 

    Android architecture features include Linux kernel, libraries, runtime, application framework, and apps.

    • Linux kernel provides hardware abstraction layer

    • Libraries include SQLite, OpenGL, and SSL

    • Runtime includes Dalvik or ART virtual machine

    • Application framework provides building blocks for app development

    • Apps are the end-user applications

    • Modularity and flexibility are key features

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

    AAPT stands for Android Asset Packaging Tool. It is used to package and compile Android app resources.

    • AAPT is a command-line tool that is included in the Android SDK.

    • It is used to compile resources such as images, layouts, and strings into a binary format that can be used by the Android system.

    • AAPT also generates the R.java file, which contains references to all the resources in an Android app.

    • It can be used to package...

  • Answered by AI
  • Q3. Life Cycle Of android activity
  • Ans. 

    The life cycle of an Android activity refers to the different states an activity goes through during its lifetime.

    • onCreate() is called when the activity is first created

    • onStart() is called when the activity becomes visible to the user

    • onResume() is called when the activity starts interacting with the user

    • onPause() is called when the activity is partially obscured by another activity

    • onStop() is called when the activity i...

  • Answered by AI
  • Q4. What are broadcast receivers? please explain the process how is it implemented
  • Ans. 

    Broadcast receivers are components that allow the app to receive and respond to system-wide broadcast announcements.

    • Broadcast receivers are registered in the app manifest or dynamically in code.

    • They can receive broadcasts from the system or from other apps.

    • Broadcasts can be sent as ordered or unordered.

    • Broadcast receivers can perform actions such as updating UI, starting a service, or sending a notification.

    • Examples of...

  • Answered by AI

Skills evaluated in this interview

Android App Developer Interview Questions asked at other Companies

Q1. Activity launch modes Activity lifecycle Program to find second largest number in an array Singleton implementation
View answer (1)

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic coding questions
  • Q2. Salary and about offer letter
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Question regarding coding
  • Q2. Discussion based on salary
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Feb 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 - Coding Test 

A basic array question was given to be solved within 24 hour

Round 3 - One-on-one 

(1 Question)

  • Q1. This was a direct one on one round where technical skills as per my past experience was analyzed.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepared for DS and coding round
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Feb 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 - Coding Test 

A question related to array was sent on mail and I have revert it within 24 hrs

Round 3 - One-on-one 

(2 Questions)

  • Q1. I think round 2 is the main round where I was drilled on my technical skills and questions were mainly related to my last working projects and many more.
  • Q2. Reverse a Linked List
  • Ans. 

    Reverse a linked list by changing the direction of pointers

    • Start with three pointers: current, prev, and next

    • Iterate through the linked list, updating pointers to reverse the direction

    • Return the new head of the reversed linked list

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Well prepare about company's products that they are working on and very much clear about data structures

Skills evaluated in this interview

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

I was interviewed before Jan 2024.

Round 1 - Aptitude Test 

10-15min related to some general knowledge questions

Round 2 - Technical 

(2 Questions)

  • Q1. Some questions on technical skills what u have know
  • Q2. Sql queries

Interview Preparation Tips

Interview preparation tips for other job seekers - good company good work culture Friendly environment
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

HTML5 canvas and JS based small assignment where we need to create circles and arrows and when we click on circle arrows should move

Round 2 - Technical 

(4 Questions)

  • Q1. Question on assignment and projects
  • Q2. 1) Project related question
  • Q3. 2) Assignment related question
  • Q4. 3) Difference between setTimeout and setInterval
  • Ans. 

    setTimeout executes a function once after a specified delay, while setInterval executes a function repeatedly at specified intervals.

    • setTimeout executes a function once after a specified delay.

    • setInterval executes a function repeatedly at specified intervals.

    • setTimeout returns a timeout ID that can be used to cancel the execution.

    • setInterval returns an interval ID that can be used to cancel the repetition.

  • Answered by AI

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Nov 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

Basic questions

Round 2 - Technical 

(2 Questions)

  • Q1. Questions from stack, looping, oops, little bits of algorithms etc.
  • Q2. Hard lavel questions for freshers. Unexpected questions
Round 3 - Coding Test 

After one round again another for ability check weather they will hire you or not because of bad decision makers.

Round 4 - HR 

(1 Question)

  • Q1. Family relationships, salary(which will be lesser than they promis to 25% when they giving you the offer later), they will try to know your weakness and play according in future.

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy to crack but join it in your own risk.

I applied via AmbitionBox and was interviewed in Aug 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is clssloading and what are classpath and how to create a object without new operator
  • Ans. 

    Classloading is the process of loading classes into JVM. Classpath is a list of directories and JAR files where classes are stored. Object can be created without new operator using reflection.

    • Classloading is done by JVM to load classes into memory

    • Classpath is a list of directories and JAR files where classes are stored

    • Object can be created without new operator using reflection

    • Reflection is a mechanism in Java that allo...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for IT Software Software Developer interview:
  • Core Java
  • basic of html
Interview preparation tips for other job seekers - i have skills for developer so any location i am immediately join and to prove my skills in organization.

Skills evaluated in this interview

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

(5 Questions)

  • Q1. IT technical support Engineer
  • Q2. Software company engineer
  • Q3. If you meant advice specifically for job seekers in the IT field, here are some tailored suggestions: 1. **Build a Strong Portfolio:** Showcase your work through a portfolio, including code samples, proje...
  • Q4. Different types of development
  • Ans. 

    Different types of development include front-end, back-end, full-stack, mobile, and software engineering.

    • Front-end development focuses on the user interface and user experience, using languages like HTML, CSS, and JavaScript.

    • Back-end development involves server-side programming and database management, using languages like Java, Python, and Ruby.

    • Full-stack development combines both front-end and back-end development sk...

  • Answered by AI
  • Q5. For job seekers specifically looking for roles in software development, here are some focused pieces of advice: 1. **Master Programming Languages:** Become proficient in widely-used languages like Python,...

Interview Preparation Tips

Interview preparation tips for other job seekers - Here are some key pieces of advice for job seekers:

1. **Tailor Your Resume:** Customize your resume for each job application to highlight relevant skills and experiences.
2. **Network:** Connect with professionals in your industry through LinkedIn, professional associations, and networking events.
3. **Prepare for Interviews:** Research the company and practice common interview questions to be well-prepared.
4. **Develop Skills:** Continuously update and improve your skills through online courses, certifications, and workshops.
5. **Leverage Job Boards:** Use job search engines, company websites, and recruitment agencies to find job opportunities.
6. **Follow Up:** After interviews, send thank-you emails to express your appreciation and reinforce your interest in the position.
7. **Stay Positive:** Job searching can be challenging, so maintain a positive attitude and stay persistent.
8. **Use Social Media:** Maintain a professional online presence and share industry-relevant content to demonstrate your expertise.
9. **Be Ready to Discuss Gaps:** If you have gaps in your employment, be prepared to explain them positively, focusing on what you learned or how you stayed productive.
10. **Practice Good Self-Care:** Job hunting can be stressful, so take breaks, exercise, and engage in activities that help you relax and stay focused.

India App Developer Interview FAQs

What are the top questions asked in India App Developer interview?

Some of the top questions asked at the India App Developer interview -

  1. what are broadcast receivers? please explain the process how is it implemen...read more
  2. What are the Features of Android Architectu...read more
  3. What is AA...read more

Tell us how to improve this page.

India App Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

4.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Compare India App Developer with

Telligent (A Verint Company)

3.0
Compare

Crew

4.0
Compare

IT Software

4.2
Compare

Pathfinder Enterprise Solutions

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