Upload Button Icon Add office photos
Engaged Employer

i

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

Zypp Electric Verified Tick

Compare button icon Compare button icon Compare
3.8

based on 270 Reviews

Filter interviews by

Zypp Electric Android Developer Interview Questions, Process, and Tips

Updated 27 Sep 2024

Top Zypp Electric Android Developer Interview Questions and Answers

Zypp Electric Android Developer Interview Experiences

2 interviews found

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. Swap two numbers without using third variable
  • Ans. 

    Swap two numbers without using a third variable

    • Use bitwise XOR operation to swap two numbers without using a third variable

    • Example: a = 5, b = 10. a = a XOR b, b = a XOR b, a = a XOR b. After swapping, a = 10, b = 5

  • Answered by AI
  • Q2. Types of inheritance in java
  • Ans. 

    There are four types of inheritance in Java: single, multilevel, hierarchical, and multiple.

    • Single inheritance: a class can only inherit from one superclass.

    • Multilevel inheritance: a class can inherit from a class which is also derived from another class.

    • Hierarchical inheritance: multiple classes inherit from a single superclass.

    • Multiple inheritance: a class can inherit from multiple superclasses (not supported in Java

  • Answered by AI
  • Q3. Singleton class in java
  • Ans. 

    A singleton class in Java is a class that allows only one instance of itself to be created and provides a global point of access to that instance.

    • Singleton pattern ensures that a class has only one instance and provides a global point of access to it.

    • The constructor of a singleton class is private to prevent instantiation from outside the class.

    • The getInstance() method is used to access the single instance of the class...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

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 b/w constraint layout & relative layout?
  • Ans. 

    Constraint layout is more flexible and efficient than relative layout.

    • Constraint layout allows for complex layouts with fewer nested views.

    • It uses constraints to position and size views relative to other views or parent layout.

    • Relative layout positions views relative to each other or parent layout using attributes like 'above', 'below', etc.

    • Constraint layout is recommended for complex layouts with many views.

    • Relative l...

  • Answered by AI
  • Q2. How do you find a missing element in an array?
  • Ans. 

    To find a missing element in an array, iterate through the array and compare each element with a range of expected values.

    • Sort the array if it is unsorted.

    • Iterate through the array and compare each element with a range of expected values.

    • If an element is missing, return it.

    • If no element is missing, return null or -1.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zypp Electric Android Developer interview:
  • DSA
  • OOPS
Interview preparation tips for other job seekers - Be consistent and practice DSA as much as you can.

Skills evaluated in this interview

Android Developer Interview Questions Asked at Other Companies

asked in Paytm
Q1. Cube Sum Pairs Problem Statement Given a positive integer N, find ... read more
asked in Rupeek
Q2. Majority Element Problem Statement Given an array/list 'ARR' cons ... read more
asked in Paytm
Q3. BST Iterator Problem Statement You are tasked with creating a cla ... read more
asked in Hike
Q4. Design an photo viewing app which will show images from the disk ... read more
asked in Paytm
Q5. Integer to Roman Conversion Given an integer N, convert it to its ... read more

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I was interviewed in Feb 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Lazy vs latinit
  • Ans. 

    lazy vs lateinit are both used in Kotlin to delay the initialization of variables, but lazy is for val properties and lateinit is for var properties.

    • lazy is a property delegate that initializes the value only upon first access

    • lateinit is used for var properties that are guaranteed to be initialized before accessing them

    • lazy can be used for properties that are computationally expensive to initialize, while lateinit is u...

  • Answered by AI
  • Q2. Hashmap vs hashtable
  • Ans. 

    Hashtable is synchronized and slower, while hashmap is not synchronized and faster.

    • Hashtable is synchronized, while hashmap is not.

    • Hashtable does not allow null keys or values, while hashmap allows one null key and multiple null values.

    • Hashtable is thread-safe, while hashmap is not.

    • Hashtable is slower than hashmap due to synchronization.

    • Example: Hashtable ht = new Hashtable(); HashMap hm = new HashMap();

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Activities lifestyle
  • Q2. Compose kotlin
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

(2 Questions)

  • Q1. Asked me to develop an android app with weather forecast (use dependency injection)
  • Q2. Develop weather forecast app
  • Ans. 

    Develop a weather forecast app for Android platform.

    • Utilize APIs like OpenWeatherMap for real-time weather data

    • Include features like current weather, hourly forecast, and 7-day forecast

    • Implement location-based weather updates

    • Design user-friendly interface with intuitive navigation

    • Incorporate push notifications for weather alerts

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I was asked to develop an Android app in a short timeframe, but the interviewer was not available to answer questions or provide feedback. Even after I completed the task, they did not review my code

Even after developing the app with the best coding practice with mvvm and DI within 1hr 30 min they didn't consider to review my code for atleast 2 mins.such unprofessional behaviour
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 May 2024. There was 1 interview round.

Round 1 - Coding Test 

Find distinct island, check if balanced parenthesis

I applied via LinkedIn and was interviewed in Apr 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. MVVM pattern and coroutines
Round 2 - Technical 

(1 Question)

  • Q1. Recyclerview practical impl with itemview
  • Ans. 

    RecyclerView is used to display large sets of data efficiently. ItemView is used to define the layout of each item in the list.

    • RecyclerView is a more advanced version of ListView and GridView

    • ItemView is a layout file that defines the UI for each item in the list

    • RecyclerView.Adapter is used to bind the data to the views

    • RecyclerView.LayoutManager is used to define the layout of the RecyclerView

    • RecyclerView.ViewHolder is

  • Answered by AI
Round 3 - Culture Fit 

(1 Question)

  • Q1. History check with previous companies

Interview Preparation Tips

Interview preparation tips for other job seekers - After 3 successful rounds, they declined to give the offer just because i am from different city with justifying that we are having dicey situation with your learning curve.

I applied via LinkedIn and was interviewed in Oct 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Interview Vector Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - First round was taken by interview Vector. One DS question and Android deep questions.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Activities lifestyle
  • Q2. Compose kotlin
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

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

Round 1 - Coding Test 

The first round is Hackerrank two algo and one UI test very easy, Second is Fundamentals of JS and React Native one must have a deep understanding of JS to do that I strongly suggest going through Akashay Saini's JS series It'll help and the Third is PS/DS asked some basic A&DS questions can be solved easily with little practice on Leetcode

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview process is very long, The First round was in January second in Feb and the Third in April

Zypp Electric Interview FAQs

How many rounds are there in Zypp Electric Android Developer interview?
Zypp Electric interview process usually has 1-2 rounds. The most common rounds in the Zypp Electric interview process are Technical and Resume Shortlist.
How to prepare for Zypp Electric 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 Zypp Electric. The most common topics and skills that interviewers at Zypp Electric expect are Android, Android Studio, Banking Operations, Case and Cost Audit.
What are the top questions asked in Zypp Electric Android Developer interview?

Some of the top questions asked at the Zypp Electric Android Developer interview -

  1. What is the difference b/w constraint layout & relative layo...read more
  2. How do you find a missing element in an arr...read more
  3. swap two numbers without using third varia...read more

Tell us how to improve this page.

Zypp Electric Android Developer Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 429 Interviews
Udaan Interview Questions
4.0
 • 335 Interviews
Meesho Interview Questions
3.7
 • 329 Interviews
CARS24 Interview Questions
3.6
 • 322 Interviews
Blinkit Interview Questions
3.7
 • 179 Interviews
BlackBuck Interview Questions
3.8
 • 172 Interviews
Tata Power Interview Questions
3.9
 • 160 Interviews
Tata 1mg Interview Questions
3.6
 • 145 Interviews
Paisabazaar.com Interview Questions
3.4
 • 138 Interviews
View all
Zypp Electric Android Developer Salary
based on 4 salaries
₹5 L/yr - ₹7.2 L/yr
14% more than the average Android Developer Salary in India
View more details

Zypp Electric Android Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

5.0

Skill development

3.0

Work-life balance

3.0

Salary

3.0

Job security

4.0

Company culture

2.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Cluster Manager
71 salaries
unlock blur

₹4.2 L/yr - ₹8.9 L/yr

Team Lead
47 salaries
unlock blur

₹2.8 L/yr - ₹4.6 L/yr

Assistant Manager
19 salaries
unlock blur

₹3.3 L/yr - ₹7 L/yr

City Head
18 salaries
unlock blur

₹7 L/yr - ₹13 L/yr

HUB Manager
15 salaries
unlock blur

₹5 L/yr - ₹8.6 L/yr

Explore more salaries
Compare Zypp Electric with

Bounce

4.0
Compare

Vogo Automotive

4.0
Compare

Ather Energy

4.0
Compare

Revolt Motors

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