Upload Button Icon Add office photos

Filter interviews by

Planet NEXTgen Technologies Interview Questions and Answers

Updated 27 Aug 2023

Planet NEXTgen Technologies Interview Experiences

Popular Designations

3 interviews found

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

I applied via Internshala and was interviewed in Jul 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 - One-on-one 

(2 Questions)

  • Q1. Sql basic questions
  • Q2. Rest all hr questions

Project Management Trainee Interview Questions asked at other Companies

Q1. Difference between planning and scheduling
View answer (1)

I applied via Walk-in and was interviewed in Jun 2022. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic of Android and Android lifecycles, also questions related with views and implementation
  • Q2. Java OOP concepts and Current android improvements and jetpack related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare your android cores and be confident.

Android Developer Interview Questions asked at other Companies

Q1. BST Iterator Problem Statement You are tasked with creating a class named BSTIterator that acts as an iterator for the inorder traversal of a binary search tree. Implement the following functions: BSTIterator(Node root): A constructor that... read more
View answer (1)

I applied via Walk-in and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. Basics of Android
  • Q2. Lifecycles of activity and fragments and various types of architecture
  • Ans. 

    Activity and fragment lifecycles and architecture types are important for Android development.

    • Activity lifecycle includes onCreate(), onStart(), onResume(), onPause(), onStop(), and onDestroy() methods.

    • Fragment lifecycle includes onAttach(), onCreate(), onCreateView(), onActivityCreated(), onStart(), onResume(), onPause(), onStop(), onDestroyView(), and onDetach() methods.

    • Architecture types include MVP, MVVM, and Clean...

  • Answered by AI
  • Q3. How services run in the android environment.
  • Ans. 

    Services are background processes that can run even when the app is not in foreground.

    • Services can be started and stopped using startService() and stopService() methods respectively.

    • Services can also be bound to an activity using bindService() method.

    • Foreground services are used to perform long-running tasks that require user interaction.

    • IntentService is a subclass of Service that handles asynchronous requests on deman...

  • Answered by AI
  • Q4. Retrofit and volley integration
  • Q5. Few logic related question on android implementation

Interview Preparation Tips

Interview preparation tips for other job seekers - be Confident and be honest, you will be selected based on your vocabulary, how you present your answers, and how you implements your logics.

Skills evaluated in this interview

Android Developer Interview Questions asked at other Companies

Q1. BST Iterator Problem Statement You are tasked with creating a class named BSTIterator that acts as an iterator for the inorder traversal of a binary search tree. Implement the following functions: BSTIterator(Node root): A constructor that... read more
View answer (1)

Interview questions from similar companies

Interview Questionnaire 

3 Questions

  • Q1. Tell me about accenture?
  • Ans. 

    Accenture is a global professional services company providing consulting, technology, and outsourcing services.

    • Global presence with offices in over 200 cities across 120 countries

    • Offers services in strategy, consulting, digital, technology, and operations

    • Works with clients in various industries such as healthcare, financial services, and technology

    • Known for its innovation and technology expertise

    • Provides solutions for ...

  • Answered by AI
  • Q2. Introduce yourself?
  • Ans. 

    I am a passionate Android Developer with 5 years of experience in building innovative mobile applications.

    • 5 years of experience in Android development

    • Proficient in Java and Kotlin programming languages

    • Strong understanding of design patterns like MVVM and MVP

    • Experience with RESTful APIs and third-party libraries

    • Published apps on Google Play Store

  • Answered by AI
  • Q3. Mention recent projects executed by accenture?
  • Ans. 

    Accenture has recently executed projects in various industries including healthcare, finance, technology, and retail.

    • Accenture recently worked on a project in the healthcare industry to improve patient care through digital solutions.

    • They also completed a project in the finance sector to enhance customer experience through personalized banking services.

    • In the technology field, Accenture developed a project to implement ...

  • Answered by AI

Interview Preparation Tips

Round: Test
Duration: 1 hour 45 minutes
Total Questions: 60

Round: HR Interview
Tips: Listen to each and every members answers who are giving interview with you.

College Name: MITCOE

I applied via Naukri.com and was interviewed in Dec 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Kotlin in Depth
  • Q2. MVVM in Depth
  • Ans. 

    MVVM is a design pattern that separates the UI logic from the business logic.

    • MVVM stands for Model-View-ViewModel

    • Model represents the data and business logic

    • View represents the UI

    • ViewModel acts as a mediator between the View and Model

    • ViewModel exposes data and commands to the View

    • MVVM helps in unit testing and maintainability

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You just need to know the details you have been used in your project. Suppose you have used "sealed" in your project then you should know everything about it.
Other than these, threre are "Handler and looper" and Rxjava. Currently all companies asking for these in details.

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Basics of Kotlin
  • Q2. Jetpack component.
  • Q3. One from data structure.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview before Aug 2023.

Round 1 - HR 

(2 Questions)

  • Q1. About interview process
  • Q2. Discussion on Salary
Round 2 - Assignment 

Assignment conducted

Interview Questionnaire 

4 Questions

  • Q1. Difference between Intent and PendingIntent?
  • Ans. 

    Intent is used to start an activity or service. PendingIntent is used to perform an action on behalf of another application.

    • Intent is used to start an activity or service within the same application or in another application.

    • PendingIntent is used to perform an action on behalf of another application, such as starting an activity or sending a broadcast.

    • Intent can be used to pass data between activities or services.

    • Pendi...

  • Answered by AI
  • Q2. What is service and it's type and work of Intent service
  • Q3. What is broadcast and it's type of broadcast and what is the use of broadcast?
  • Ans. 

    Broadcast is a messaging system in Android that allows communication between different components of an app or between different apps.

    • Broadcast is a way to send messages to multiple components or apps at once.

    • There are two types of broadcasts: ordered and unordered.

    • Ordered broadcasts are delivered to receivers in a specific order, while unordered broadcasts are delivered to all receivers at once.

    • Broadcasts can be used ...

  • Answered by AI
  • Q4. What is the marker interface and when and where to use interface?
  • Ans. 

    Marker interface is an empty interface used to mark a class as having a particular property or behavior.

    • Marker interface has no methods or fields, it is used to provide metadata to the code.

    • It is used to indicate that a class has a certain capability or should be treated in a special way.

    • Examples of marker interfaces are Serializable, Cloneable, and Remote.

    • Interfaces are used to achieve abstraction and provide a contra...

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are different launch modes
  • Ans. 

    Launch modes determine how a new instance of an activity is associated with the current task.

    • Standard: Creates a new instance of the activity in the task's stack.

    • SingleTop: If an instance of the activity already exists at the top of the stack, it will be reused.

    • SingleTask: Activity is always the root of a new task and the task is cleared before the activity starts.

    • SingleInstance: Activity is launched into a new task an

  • Answered by AI
  • Q2. What is coroutine
  • Ans. 

    Coroutines are light-weight threads that help manage asynchronous tasks efficiently in Android development.

    • Coroutines are part of Kotlin programming language and are used for asynchronous programming.

    • They allow developers to write asynchronous code in a sequential manner, making it easier to read and maintain.

    • Coroutines can be used to perform tasks like network calls, database operations, and long-running computations.

    • ...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Current package
  • Q2. Expected package

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Oct 2022. There were 2 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 - Technical 

(2 Questions)

  • Q1. Activity Lifecycle in Android
  • Ans. 

    Activity Lifecycle in Android refers to the sequence of states an activity goes through during its lifetime.

    • An activity can be in one of four states: running, paused, stopped, or destroyed.

    • The lifecycle methods are: onCreate(), onStart(), onResume(), onPause(), onStop(), and onDestroy().

    • For example, when an activity is launched, it goes through onCreate(), onStart(), and onResume() methods in that order.

    • When the activi...

  • Answered by AI
  • Q2. What are Kotlin Coroutines
  • Ans. 

    Kotlin Coroutines are a way to write asynchronous, non-blocking code in a sequential manner.

    • Coroutines are lightweight threads that can be paused and resumed at any point.

    • They simplify asynchronous programming by allowing developers to write code that looks synchronous.

    • They can be used for tasks such as network calls, database operations, and UI updates.

    • Kotlin provides built-in support for coroutines with suspend funct

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Basics of Kotlin and Java.
MVVM Architecture

Skills evaluated in this interview

Planet NEXTgen Technologies Interview FAQs

How many rounds are there in Planet NEXTgen Technologies interview?
Planet NEXTgen Technologies interview process usually has 1-2 rounds. The most common rounds in the Planet NEXTgen Technologies interview process are One-on-one Round and Resume Shortlist.
What are the top questions asked in Planet NEXTgen Technologies interview?

Some of the top questions asked at the Planet NEXTgen Technologies interview -

  1. lifecycles of activity and fragments and various types of architect...read more
  2. how services run in the android environme...read more
  3. Java OOP concepts and Current android improvements and jetpack related questi...read more

Tell us how to improve this page.

Planet NEXTgen Technologies Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.6k Interviews
Accenture Interview Questions
3.8
 • 8.3k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.7
 • 5.7k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
HCLTech Interview Questions
3.5
 • 3.9k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.2k Interviews
View all

Planet NEXTgen Technologies Reviews and Ratings

based on 12 reviews

3.8/5

Rating in categories

4.1

Skill development

4.2

Work-life balance

3.6

Salary

3.6

Job security

3.4

Company culture

3.3

Promotions

3.7

Work satisfaction

Explore 12 Reviews and Ratings
Application Developer
10 salaries
unlock blur

₹2 L/yr - ₹6.7 L/yr

Application Support Analyst
6 salaries
unlock blur

₹2.4 L/yr - ₹5 L/yr

Software Quality Assurance Analyst
4 salaries
unlock blur

₹4.5 L/yr - ₹7.1 L/yr

Analytics Engineer
3 salaries
unlock blur

₹5.1 L/yr - ₹5.4 L/yr

IOS Application Developer
3 salaries
unlock blur

₹5.2 L/yr - ₹9.5 L/yr

Explore more salaries
Compare Planet NEXTgen Technologies with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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