Upload Button Icon Add office photos

Filter interviews by

Ajath Infotech Android Developer Interview Questions and Answers

Updated 16 May 2024

Ajath Infotech 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 Campus Placement and was interviewed in Nov 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

It was very basic addition subtraction question

Round 2 - Coding Test 

Very Basic codes, add, subtract, etc

Round 3 - Group Discussion 

GD on economy and govenment , currency

Round 4 - Technical 

(2 Questions)

  • Q1. Straight questions about resume
  • Q2. What is OOPs, What have you done in project, Basic MySQL queries to edit column name , table name, Is C OOP language, Are you comfortable in stressful enviournment

Interview Preparation Tips

Interview preparation tips for other job seekers - SMART ADVICE: Do not join this company, there is no management and they will directly assign you projects(No KT, no comments in code), no seniors, no management , one leave per month, salary cut if you are 15mins late, hire and fire culture, low salary, no full-time offer for interns even if mentioned in Offer letter, They have no financial backup. If you think hard-work can get you permanent here, you're absolutely wrong. It's more like a shop than a company. Even HRs have no rights here. Even if they hire you as an experienced developer at a higher package, they will fire you after you give them your work.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Referral

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 - Technical 

(3 Questions)

  • Q1. Describe the inner working of recyclerview?
  • Ans. 

    RecyclerView is a flexible view for providing a limited window into a large data set.

    • RecyclerView is used to display large data sets that can be scrolled efficiently.

    • It reuses the views that are no longer visible to display new data.

    • It uses a LayoutManager to position the items and a ViewHolder to cache the views.

    • It provides built-in animations for adding, removing, and updating items.

    • It supports both vertical and hori...

  • Answered by AI
  • Q2. Difference between Array and Linkedlist?
  • Ans. 

    Array is a collection of elements of similar data type stored in contiguous memory locations. LinkedList is a data structure where each element is a separate object with a reference to the next element.

    • Array has fixed size, LinkedList can grow dynamically

    • Array has faster access time, LinkedList has faster insertion and deletion time

    • Array is best for random access, LinkedList is best for sequential access

    • Example of Arra...

  • Answered by AI
  • Q3. What is context? explain it's types
  • Ans. 

    Context is an object that provides access to application-specific resources and classes.

    • Context is used to get access to system services, resources, preferences, etc.

    • There are two types of context: Application Context and Activity Context.

    • Application Context is tied to the lifecycle of the application and is available throughout the application.

    • Activity Context is tied to the lifecycle of an activity and is available o...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Have thorough knowledge of Android topics you mention.

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Feb 2020. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Android life cycle
  • Q2. Firebase related
  • Q3. Layouts used in your project & Advantage of Constraint layout
  • Ans. 

    Used ConstraintLayout for flexible UI design

    • ConstraintLayout allows for flexible UI design and reduces nested layouts

    • It supports complex layouts with multiple views and constraints

    • It improves performance by reducing the number of layout hierarchies

    • Other layouts used include LinearLayout and RelativeLayout

  • Answered by AI
  • Q4. Basic java questions & Deadlock
  • Q5. Explain any one of your project
  • Q6. Design patterns you used so far. MVP, MVVM etc
  • Ans. 

    I have used MVP and MVVM design patterns in my Android development projects.

    • MVP (Model-View-Presenter) separates the presentation layer from the business logic and data access layers.

    • MVVM (Model-View-ViewModel) separates the view from the business logic and data access layers, and uses data binding to update the view automatically.

    • MVP is better suited for smaller projects, while MVVM is better for larger projects with ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure their is vacant and they need candidates. Don't just go by seeing the ads in Job search sites. Most of the time they will reject candidates for small reasons even though performance was good.

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. General Android Basics
Round 2 - Technical 

(1 Question)

  • Q1. Conceptual work flow of concepts
  • Ans. 

    Conceptual work flow of concepts involves understanding the flow of ideas and processes in a systematic manner.

    • Identify key concepts and their relationships

    • Map out the sequence of events or steps

    • Consider dependencies and interactions between concepts

    • Visualize the flow using diagrams or charts

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It was js coding and react native related questions.

Round 2 - Technical 

(1 Question)

  • Q1. It was technical skills of Android and iOS application related react native
Round 3 - Face to face round 

(1 Question)

  • Q1. It was discussed about your career and judge our professional career.

Interview Preparation Tips

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

I applied via Instahyre and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Javascript basic questions, React Native interview questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear your basic understanding of javascript
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Referral

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 - Technical 

(3 Questions)

  • Q1. Describe the inner working of recyclerview?
  • Ans. 

    RecyclerView is a flexible view for providing a limited window into a large data set.

    • RecyclerView is used to display large data sets that can be scrolled efficiently.

    • It reuses the views that are no longer visible to display new data.

    • It uses a LayoutManager to position the items and a ViewHolder to cache the views.

    • It provides built-in animations for adding, removing, and updating items.

    • It supports both vertical and hori...

  • Answered by AI
  • Q2. Difference between Array and Linkedlist?
  • Ans. 

    Array is a collection of elements of similar data type stored in contiguous memory locations. LinkedList is a data structure where each element is a separate object with a reference to the next element.

    • Array has fixed size, LinkedList can grow dynamically

    • Array has faster access time, LinkedList has faster insertion and deletion time

    • Array is best for random access, LinkedList is best for sequential access

    • Example of Arra...

  • Answered by AI
  • Q3. What is context? explain it's types
  • Ans. 

    Context is an object that provides access to application-specific resources and classes.

    • Context is used to get access to system services, resources, preferences, etc.

    • There are two types of context: Application Context and Activity Context.

    • Application Context is tied to the lifecycle of the application and is available throughout the application.

    • Activity Context is tied to the lifecycle of an activity and is available o...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Have thorough knowledge of Android topics you mention.

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Feb 2023. There were 3 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 - Aptitude Test 

Aptitude + coding test with screen sharing and audio and video recording.

Round 3 - One-on-one 

(1 Question)

  • Q1. Swift assessment questions and storyboard related

I applied via LinkedIn and was interviewed in Feb 2020. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Android life cycle
  • Q2. Firebase related
  • Q3. Layouts used in your project & Advantage of Constraint layout
  • Ans. 

    Used ConstraintLayout for flexible UI design

    • ConstraintLayout allows for flexible UI design and reduces nested layouts

    • It supports complex layouts with multiple views and constraints

    • It improves performance by reducing the number of layout hierarchies

    • Other layouts used include LinearLayout and RelativeLayout

  • Answered by AI
  • Q4. Basic java questions & Deadlock
  • Q5. Explain any one of your project
  • Q6. Design patterns you used so far. MVP, MVVM etc
  • Ans. 

    I have used MVP and MVVM design patterns in my Android development projects.

    • MVP (Model-View-Presenter) separates the presentation layer from the business logic and data access layers.

    • MVVM (Model-View-ViewModel) separates the view from the business logic and data access layers, and uses data binding to update the view automatically.

    • MVP is better suited for smaller projects, while MVVM is better for larger projects with ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure their is vacant and they need candidates. Don't just go by seeing the ads in Job search sites. Most of the time they will reject candidates for small reasons even though performance was good.

Skills evaluated in this interview

Ajath Infotech Interview FAQs

How many rounds are there in Ajath Infotech Android Developer interview?
Ajath Infotech interview process usually has 4 rounds. The most common rounds in the Ajath Infotech interview process are Technical, Aptitude Test and Coding Test.
How to prepare for Ajath Infotech 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 Ajath Infotech. The most common topics and skills that interviewers at Ajath Infotech expect are Android, Design Patterns, Open Source and SDK.

Tell us how to improve this page.

Ajath Infotech Android Developer Salary
based on 12 salaries
₹2.6 L/yr - ₹6 L/yr
31% less than the average Android Developer Salary in India
View more details

Ajath Infotech Android Developer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

2.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Android Developer
12 salaries
unlock blur

₹2.7 L/yr - ₹6 L/yr

Project Coordinator
7 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

HR Executive
5 salaries
unlock blur

₹1.5 L/yr - ₹3 L/yr

PHP Developer
5 salaries
unlock blur

₹1.6 L/yr - ₹3.6 L/yr

Software Developer
4 salaries
unlock blur

₹1 L/yr - ₹4 L/yr

Explore more salaries
Compare Ajath Infotech with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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