Upload Button Icon Add office photos

Filter interviews by

Trimax IT Infrastructure Services Android Developer Interview Questions and Answers

Updated 24 Dec 2022

Trimax IT Infrastructure Services Android Developer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Nov 2022. 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 - Aptitude Test 

Ask questions on Android and java

Round 3 - Coding Test 

Given small easy project for test given in few hours.

Interview Preparation Tips

Interview preparation tips for other job seekers - Never join this organisation recommend. No work only bug fix.

Interview questions from similar companies

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

(2 Questions)

  • Q1. Threading kotlin
  • Q2. Play services security
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jan 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Explain MVVM architecture
  • Ans. 

    MVVM is an architectural pattern that separates the UI, business logic, and data layers in an Android app.

    • Model: Represents the data and business logic of the application.

    • View: Represents the UI components of the application.

    • ViewModel: Acts as a mediator between the Model and View, handling communication and logic.

    • Data binding: MVVM uses data binding to synchronize the View and ViewModel.

    • Example: In an Android app, the...

  • Answered by AI
  • Q2. Explain Java Basic concept
  • Ans. 

    Java is a high-level programming language known for its simplicity and versatility.

    • Java is an object-oriented language

    • It is platform-independent due to its 'write once, run anywhere' principle

    • Java uses a virtual machine (JVM) to execute code

    • It supports multithreading for concurrent programming

    • Java has automatic memory management through garbage collection

  • Answered by AI
  • Q3. Explain Kotlin modifiers
  • Ans. 

    Kotlin modifiers are keywords used to modify classes, properties, functions, and other elements in Kotlin programming language.

    • Kotlin modifiers include 'public', 'private', 'protected', 'internal', 'open', 'final', 'abstract', 'override', 'lateinit', 'const', 'companion', 'inline', 'data', 'sealed', 'inner', etc.

    • Modifiers like 'public', 'private', 'protected', and 'internal' control the visibility of classes, functions...

  • Answered by AI
  • Q4. Explain RXJava networking library
  • Ans. 

    RXJava is a popular Java library for composing asynchronous and event-based programs using observable sequences.

    • RXJava provides a powerful way to handle asynchronous operations by using observables and subscribers.

    • It simplifies complex asynchronous code by allowing developers to chain operations and handle errors more easily.

    • RXJava is commonly used in Android development for handling network requests and background tas...

  • Answered by AI
  • Q5. Explain Git commit , merge and rebase command
  • Ans. 

    Git commit records changes to the repository, merge combines changes from different branches, and rebase moves changes to a new base commit.

    • Git commit saves changes to the local repository with a message describing the changes made.

    • Git merge combines changes from different branches into the current branch.

    • Git rebase moves changes from one branch to another by applying each commit from the source branch to the target br

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Approached by Company and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Explain hooks in react
  • Ans. 

    Hooks are a new addition in React 16.8 that allow you to use state and other React features without writing a class.

    • Hooks are functions that let you use state and other React features in functional components.

    • useState() is a hook that allows you to add state to functional components.

    • useEffect() is a hook that allows you to perform side effects in functional components.

    • Custom hooks are reusable functions that can contai...

  • Answered by AI
Round 2 - Assignment 

Create weather application in react native with unit test scripts

Interview Preparation Tips

Interview preparation tips for other job seekers - I recently interviewed for react native developer position and it started with a technical discussion followed by an assessment and after clearing both rounds I was asked to submit a detailed document regarding my technical experience and past projects. Since then I didn't get any feedback from the company I even tried to contact the Xoriant hr directly but was unable to get any reply so it was a very disappointing experience.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Questions related to basics of Kotlin
  • Q2. Questions related to basics of Android
Round 2 - HR 

(1 Question)

  • Q1. Salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not join
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I was interviewed before Jul 2023.

Round 1 - Coding Test 

It was a leetcode interview process

Round 2 - HR 

(2 Questions)

  • Q1. Career questions
  • Q2. Salary questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic oops concept
  • Q2. Kotlin basic question
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Types of job in kotlin coroutine
  • Ans. 

    Types of jobs in Kotlin coroutine include launch, async, withContext, and runBlocking.

    • launch: starts a new coroutine without blocking the current thread

    • async: starts a new coroutine and returns a Deferred object with a result

    • withContext: switches the coroutine context within a coroutine

    • runBlocking: blocks the current thread until the coroutine inside it is completed

  • Answered by AI
  • Q2. What is Flow, Channel diffrent between StateFlow and SharedFlow
  • Ans. 

    Flow is a cold asynchronous data stream, Channel is a hot asynchronous data stream. StateFlow is a hot asynchronous data stream with a state, SharedFlow is a hot asynchronous data stream without a state.

    • Flow is a cold asynchronous data stream that emits values one by one.

    • Channel is a hot asynchronous data stream that can have multiple subscribers.

    • StateFlow is a hot asynchronous data stream that retains the most recent ...

  • Answered by AI
  • Q3. If Flow lifecycle aware
  • Ans. 

    Flow lifecycle aware means using Kotlin Flow with lifecycle awareness in Android development.

    • Flow lifecycle aware helps manage data streams in Android apps

    • It ensures that data emissions are only observed when the lifecycle is in the appropriate state

    • Example: Using Flow with LiveData to update UI components based on lifecycle events

  • Answered by AI
  • Q4. What is inline function and highorder function?
  • Ans. 

    Inline functions are functions that are expanded in place at the call site, while high-order functions are functions that can take other functions as parameters or return them.

    • Inline functions are expanded in place at the call site to improve performance.

    • High-order functions can take other functions as parameters or return them.

    • Example of high-order function: map() function in Kotlin.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for Kotlin basic

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic interview question
Round 2 - One-on-one 

(1 Question)

  • Q1. Basic interview questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Basic info of application development and upload process

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't give interview if you are seaching seriously job for iOS development if you have no option then try. completely west of time your 10 to 15 day's will be go waist best do preparation for another company interview because I face one very bad experience they take interview I clear all round they call me in office for HR round salary discuss. After 4 day's I take they said project developer requirement full-fill, kindly try that time I try for another interview but they didn't given feedback on given interview after next day another recruiter call and said you need to give 2 more rounds. They are only playing with your resume I thing they don't need developer.

Senior IOS Developer Interview Questions & Answers

Apexon user image Pavan Parashram Jadhav

posted on 21 Nov 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

(4 Questions)

  • Q1. Swift basic questions
  • Q2. BLE based question
  • Q3. Protocol oriented programming
  • Q4. Unit test cases
Round 3 - Technical 

(3 Questions)

  • Q1. Previous project explain
  • Q2. Capabilities as per current project requirements
  • Ans. 

    My capabilities align with the current project requirements, including expertise in Swift, Objective-C, and experience with integrating third-party libraries.

    • Proficient in Swift and Objective-C programming languages

    • Experience with integrating third-party libraries and APIs

    • Strong understanding of iOS design patterns and best practices

  • Answered by AI
  • Q3. Manager skills require

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare deeper in each concept

Trimax IT Infrastructure Services Interview FAQs

How many rounds are there in Trimax IT Infrastructure Services Android Developer interview?
Trimax IT Infrastructure Services interview process usually has 3 rounds. The most common rounds in the Trimax IT Infrastructure Services interview process are Resume Shortlist, Aptitude Test and Coding Test.
How to prepare for Trimax IT Infrastructure Services 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 Trimax IT Infrastructure Services. The most common topics and skills that interviewers at Trimax IT Infrastructure Services expect are Android, Mobile Application Development, SQL Database and SQLite.

Tell us how to improve this page.

Trimax IT Infrastructure Services Android Developer Salary
based on 6 salaries
₹4.5 L/yr - ₹5.1 L/yr
23% less than the average Android Developer Salary in India
View more details

Trimax IT Infrastructure Services Android Developer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.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
Network Engineer
259 salaries
unlock blur

₹1 L/yr - ₹4.7 L/yr

Network Administrator
32 salaries
unlock blur

₹4 L/yr - ₹10 L/yr

Network Field Engineer
32 salaries
unlock blur

₹2.2 L/yr - ₹3.8 L/yr

Network Operator cum Field Engineer
23 salaries
unlock blur

₹2.7 L/yr - ₹3.6 L/yr

L2 Network Engineer
22 salaries
unlock blur

₹2.5 L/yr - ₹3.4 L/yr

Explore more salaries
Compare Trimax IT Infrastructure Services with

CMS IT Services

3.1
Compare

Sify Technologies

3.9
Compare

HCLTech

3.5
Compare

Wipro

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