Upload Button Icon Add office photos

Filter interviews by

Arche Softronix Android Developer Interview Questions and Answers

Updated 10 Apr 2021

Arche Softronix Android Developer Interview Experiences

1 interview found

I applied via Referral

Interview Questionnaire 

3 Questions

  • Q1. About Restful API
  • Q2. About app security
  • Q3. About Hashing and Encryption

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice company to work with, be ready with basic questions with confidence. Have strong base for android and core java.

Interview questions from similar companies

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 Feb 2023. There were 2 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 - Technical 

(2 Questions)

  • Q1. What is the difference between interface and abstract class?
  • Ans. 

    Interface defines only method signatures while abstract class can have both method signatures and implementations.

    • An interface can be implemented by multiple classes while a class can only extend one abstract class.

    • An abstract class can have constructors while an interface cannot.

    • An abstract class can have non-abstract methods while an interface can only have abstract methods.

    • An abstract class can have instance variabl...

  • Answered by AI
  • Q2. What is singleton class?
  • Ans. 

    A singleton class is a class that can only have one instance created at a time.

    • Singleton classes are often used for managing resources that should only have one instance, such as a database connection or a configuration file.

    • They are implemented by making the constructor private and providing a static method to access the single instance.

    • Singleton classes can also implement interfaces and inherit from other classes.

    • Exa...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for the basics of Java,Kotlin and Android.

Skills evaluated in this interview

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

(1 Question)

  • Q1. Basic questions from Swift
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
No response

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. Explain about protocol extensions
  • Ans. 

    Protocol extensions in iOS allow adding functionality to existing protocols without modifying the original protocol definition.

    • Protocol extensions can provide default implementations for protocol methods.

    • They can also add new methods and properties to conforming types.

    • Protocol extensions are useful for adding common functionality to multiple types that conform to a protocol.

    • Example: extending the Equatable protocol to ...

  • Answered by AI
  • Q2. Difference between merge and rebase
  • Ans. 

    Merge combines changes from different branches, while rebase moves the entire branch to a new base commit.

    • Merge creates a new commit to combine changes, while rebase rewrites commit history.

    • Merge preserves the commit history of all branches, while rebase creates a linear history.

    • Merge is non-destructive and keeps the original branch intact, while rebase modifies the branch being rebased.

    • Example: 'git merge feature-bran

  • Answered by AI
  • Q3. Explain about Protocol equitability
  • Ans. 

    Protocol equitability ensures that all participants in a communication protocol have equal access and opportunity to send and receive data.

    • Ensures fair and equal treatment of all participants in a communication protocol

    • Prevents any participant from having an unfair advantage or disadvantage

    • Promotes transparency and inclusivity in communication protocols

  • Answered by AI

Skills evaluated in this interview

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

I applied via AmbitionBox and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Explain the concept of multithreading and how is it differ from multiprocessing
  • Ans. 

    Multithreading allows multiple threads to exist within the context of a single process, while multiprocessing involves multiple processes running concurrently.

    • Multithreading allows multiple threads to share the same memory space and resources of a single process, while multiprocessing involves separate memory space for each process.

    • Multithreading is more lightweight and efficient compared to multiprocessing as threads ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zoho Mobile Application Developer interview:
  • Programming
  • Data Structures
  • Operating Systems
  • System Design
Interview preparation tips for other job seekers - Research the company thoroughly, tailor your resume and cover letter accordingly, practice interviewing and showcase your skill confidently

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Struct vs class
  • Ans. 

    Structs are value types and classes are reference types in Swift.

    • Structs are passed by value, while classes are passed by reference.

    • Structs are copied when assigned to a new variable, while classes point to the same instance.

    • Use structs for simple data types and classes for more complex objects.

    • Example: struct Point { var x: Int, y: Int } vs class Person { var name: String, age: Int }

  • Answered by AI
  • Q2. Optional chaining
Round 2 - HR 

(2 Questions)

  • Q1. Introduction about myself
  • Q2. Why do I want to switch Job

Skills evaluated in this interview

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

Asked very good questions

Round 2 - Technical 

(1 Question)

  • Q1. Asked deep concept of react and js.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Android Memory Leaks
  • Q2. Android architecture
  • Q3. Kotlin basics questions

Interview Preparation Tips

Topics to prepare for KPIT Technologies Senior Android Developer interview:
  • Android Latest
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 Feb 2023. There were 2 interview rounds.

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 

(2 Questions)

  • Q1. What is the difference between interface and abstract class?
  • Ans. 

    Interface defines only method signatures while abstract class can have both method signatures and implementations.

    • An interface can be implemented by multiple classes while a class can only extend one abstract class.

    • An abstract class can have constructors while an interface cannot.

    • An abstract class can have non-abstract methods while an interface can only have abstract methods.

    • An abstract class can have instance variabl...

  • Answered by AI
  • Q2. What is singleton class?
  • Ans. 

    A singleton class is a class that can only have one instance created at a time.

    • Singleton classes are often used for managing resources that should only have one instance, such as a database connection or a configuration file.

    • They are implemented by making the constructor private and providing a static method to access the single instance.

    • Singleton classes can also implement interfaces and inherit from other classes.

    • Exa...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for the basics of Java,Kotlin and Android.

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Java basics questions
  • Q2. Android basics questions

Arche Softronix Interview FAQs

What are the top questions asked in Arche Softronix Android Developer interview?

Some of the top questions asked at the Arche Softronix Android Developer interview -

  1. About Hashing and Encrypt...read more
  2. About Restful ...read more
  3. About app secur...read more

Tell us how to improve this page.

Technical Recruiter
9 salaries
unlock blur

₹1.5 L/yr - ₹3.8 L/yr

Senior Software Engineer
7 salaries
unlock blur

₹5.5 L/yr - ₹18 L/yr

Software Developer
5 salaries
unlock blur

₹3.5 L/yr - ₹5.1 L/yr

Junior Software Developer
5 salaries
unlock blur

₹3 L/yr - ₹7 L/yr

Senior Technical Recruiter
5 salaries
unlock blur

₹2.7 L/yr - ₹3.7 L/yr

Explore more salaries
Compare Arche Softronix with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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