i
Go-Jek
Filter interviews by
I own the product metrics related to user engagement and retention.
I track user retention rate and churn rate to understand user behavior.
I analyze user engagement metrics such as daily active users, time spent on the app, and feature usage.
I use A/B testing to measure the impact of new features on user engagement and retention.
I collaborate with the data analytics team to ensure data accuracy and consistency.
Product expectations clear but engineering team struggling to architect solution. How did you unblock them?
Identified the specific challenges the engineering team was facing
Collaborated with the team to brainstorm potential solutions
Brought in outside expertise or resources if necessary
Prioritized and broke down the problem into manageable tasks
Provided clear communication and support throughout the process
I improved user engagement by 30% through a targeted feature launch, significantly boosting revenue.
Identified a drop in user engagement metrics for our mobile app.
Conducted user research and found that users wanted a personalized experience.
Launched a new feature that provided personalized content recommendations.
Monitored engagement metrics post-launch, resulting in a 30% increase in daily active users.
This incr...
Entering the market with a new massy product
Research the existing product and its market
Identify the gaps and pain points of the existing product
Develop a unique value proposition for the new product
Prioritize features based on customer needs and available resources
Create a wireframe to visualize the product
Test the wireframe with potential customers for feedback
As a Product Lead, I own metrics such as user engagement, retention, and revenue growth. These metrics generate RoI by improving the overall user experience and driving business growth.
I own metrics such as user engagement, retention, and revenue growth.
By improving user engagement, we can increase the time users spend on our platform and reduce churn.
By improving retention, we can increase the lifetime value of o...
Metrics for a photo-sharing app MVP and communicating success to upper management
Metrics: user acquisition, retention, engagement, user-generated content, referral rate, conversion rate, churn rate, revenue
Dashboard hierarchy: team-specific metrics, overall app metrics, comparison with industry benchmarks
Communicating success: tie metrics to business goals, highlight improvements and areas for growth, use data vis...
I own the product metrics related to user engagement and retention.
I track user retention rate and churn rate to understand user behavior.
I analyze user engagement metrics such as daily active users, time spent on the app, and feature usage.
I use A/B testing to measure the impact of new features on user engagement and retention.
I collaborate with the data analytics team to ensure data accuracy and consistency.
I improved user engagement by 30% through a targeted feature launch, significantly boosting revenue.
Identified a drop in user engagement metrics for our mobile app.
Conducted user research and found that users wanted a personalized experience.
Launched a new feature that provided personalized content recommendations.
Monitored engagement metrics post-launch, resulting in a 30% increase in daily active users.
This increase ...
As a Product Lead, I own metrics such as user engagement, retention, and revenue growth. These metrics generate RoI by improving the overall user experience and driving business growth.
I own metrics such as user engagement, retention, and revenue growth.
By improving user engagement, we can increase the time users spend on our platform and reduce churn.
By improving retention, we can increase the lifetime value of our cu...
Metrics for a photo-sharing app MVP and communicating success to upper management
Metrics: user acquisition, retention, engagement, user-generated content, referral rate, conversion rate, churn rate, revenue
Dashboard hierarchy: team-specific metrics, overall app metrics, comparison with industry benchmarks
Communicating success: tie metrics to business goals, highlight improvements and areas for growth, use data visualiz...
Entering the market with a new massy product
Research the existing product and its market
Identify the gaps and pain points of the existing product
Develop a unique value proposition for the new product
Prioritize features based on customer needs and available resources
Create a wireframe to visualize the product
Test the wireframe with potential customers for feedback
As a Product Lead, how would you handle a situation where a colleague from another team reports being bullied by an employee?
Listen to the colleague and take their complaint seriously
Assure the colleague that they are safe and that the company has a zero-tolerance policy for bullying
Investigate the situation and gather evidence
Take appropriate action, which may include disciplinary action or termination of the employee
...
Top trending discussions
I applied via Recruitment Consulltant and was interviewed before Jun 2023. There were 2 interview rounds.
In my previous role, I received multiple accolades for my contributions, including recognition for teamwork and project success.
Employee of the Month: I was recognized as Employee of the Month for consistently exceeding project deadlines and delivering high-quality work.
Team Leadership: I led a cross-functional team that successfully launched a new product, resulting in a 20% increase in sales within the first quarter.
...
I applied via Job Portal and was interviewed in Feb 2022. There were 2 interview rounds.
I applied via Recruitment Consulltant
posted on 10 May 2015
Multi tasking, multi processing, and multi programming are different approaches to managing tasks in an operating system.
Multi tasking allows multiple tasks to run concurrently on a single processor.
Multi processing involves multiple processors running tasks simultaneously.
Multi programming allows multiple programs to be loaded into memory and executed concurrently.
Examples of multi tasking operating systems include Wi...
Memory allocation refers to the process of assigning memory to programs during runtime.
Stack allocation is done automatically and is limited in size.
Heap allocation is done manually and is larger in size.
Stack memory is used for local variables and function calls.
Heap memory is used for dynamic memory allocation.
Memory leaks can occur if heap memory is not properly managed.
Use a shared variable and synchronization mechanisms to ensure natural order printing of numbers.
Create two threads, one for printing even numbers and the other for printing odd numbers.
Use a shared variable to keep track of the current number to be printed.
Implement synchronization mechanisms like locks or semaphores to ensure only one thread can access the shared variable at a time.
Each thread should check if it is i...
Printing a matrix in spiral order
Start from the first element and print it
Move in a spiral order towards the center of the matrix
Repeat until all elements are printed
Thread class and Runnable Interface are used for multithreading in Java.
Thread class is a predefined class in Java that provides methods to create and control threads.
Runnable interface is used to define a task that can be executed by a thread.
Thread class implements Runnable interface.
Thread class provides more control over threads than Runnable interface.
Example: Thread t = new Thread(new MyRunnable()); t.start();
Exa...
Linked List is a dynamic data structure while ArrayList is a static data structure.
Linked List is best for frequent insertion and deletion operations.
ArrayList is best for frequent access operations.
Linked List uses more memory than ArrayList.
ArrayList is faster than Linked List for accessing elements.
Use Linked List when you need to frequently add or remove elements from the list.
Use ArrayList when you need to frequen...
I am not interested in a career in investment banking.
I am more interested in a career in software development
I enjoy problem-solving and creating innovative solutions through coding
Investment banking does not align with my passion and skill set
I have chosen to apply to J.P. Morgan because of their reputation, global presence, and opportunities for growth.
J.P. Morgan has a strong reputation in the financial industry.
They have a global presence with offices in multiple countries.
The company offers various opportunities for career growth and development.
J.P. Morgan is known for its innovative technology solutions in the financial sector.
I am impressed by their ...
Yes, I have made a mistake in my previous project.
I underestimated the complexity of a task and ended up missing the deadline.
I failed to properly test a feature, resulting in a bug that affected user experience.
I accidentally deleted an important file without having a backup.
I misunderstood a requirement and implemented a feature incorrectly.
posted on 8 Dec 2021
I applied via Naukri.com and was interviewed in Jun 2021. There were 2 interview rounds.
I appeared for an interview before Dec 2020.
Round duration - 90 minutes
Round difficulty - Medium
The round consisted of 3 coding Questions and 20 Technical MCQs.
Given a number of ropes denoted as 'N' and an array containing the lengths of these ropes, your task is to connect the ropes into one single rope. The cost to connect two r...
The task is to find the minimum cost required to connect all the ropes by summing their lengths.
Iterate through the ropes and connect the two shortest ropes at each step to minimize cost
Use a priority queue to efficiently find the shortest ropes
Keep track of the total cost as you connect the ropes
Example: For input [4, 3, 2, 6], connect 2 and 3 (cost 5), then connect 4 and 5 (cost 9), then connect 9 and 6 (cost 15) for...
Determine if a given N * N matrix is an idempotent matrix. A matrix is considered idempotent if it satisfies the following condition:
M * M = M
The first line cont...
Check if a given matrix is idempotent by verifying if M * M = M.
Iterate through the matrix and multiply it with itself to check if it equals the original matrix.
If the condition M * M = M is satisfied, then the matrix is idempotent.
If the condition is not satisfied, then the matrix is not idempotent.
Given an integer 'N', calculate and print the sum of the least common multiples (LCM) for each integer from 1 to N with N.
The sum is represented as:LCM(1, N) + LCM(2, N) + ....
Calculate and print the sum of least common multiples (LCM) for each integer from 1 to N with N.
Iterate from 1 to N and calculate LCM of each number with N
Add all the calculated LCM values to get the final sum
Return the sum for each test case
Round duration - 120 minutes
Round difficulty - Medium
This round is a Long Coding Round. Every Candidate was assigned with a mentor who guides them, We were given a real-life scenario for which we have to construct a database with required tables. We should draw an ER Diagram to demonstrate the Database. After the Database Completion, We have to Start Coding the Application. The Design(like Placing the button or background colour) is not given much importance. They mainly test the practical knowledge of candidates in OOPS and expertise in a C, C++, Java, Android or any other language were OOPS Concepts can be applied.
Round duration - 180 Minutes
Round difficulty - Medium
This Round is a technical Interview. I was asked Questions to test my Technical Knowledge.
Given an integer array arr
of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.
The first line contains an integer 'T' representing the n...
Sort an array of 0s, 1s, and 2s in linear time complexity.
Use three pointers to keep track of 0s, 1s, and 2s while iterating through the array.
Swap elements based on the values encountered to sort the array in-place.
Time complexity of the algorithm should be O(N) where N is the size of the array.
Round duration - 20 Minutes
Round difficulty - Easy
Tip 1 : Do Atleast 2 Projects
Tip 2 : Be Strong in what you have in your resume
Tip 3 : Be Confident and Polite
Tip 1 : Keep it Short to one or two pages
Tip 2 : Keep it standout..as it is what projects you uniquely.
I applied via Campus Placement and was interviewed in Mar 2021. There was 1 interview round.
posted on 5 Jul 2021
Senior Software Engineer
109
salaries
| ₹23.4 L/yr - ₹70 L/yr |
Software Engineer
53
salaries
| ₹15 L/yr - ₹42.4 L/yr |
Senior Data Scientist
42
salaries
| ₹32.5 L/yr - ₹45 L/yr |
Data Scientist
26
salaries
| ₹24 L/yr - ₹44 L/yr |
Sdet Lead
23
salaries
| ₹38 L/yr - ₹55 L/yr |
Wells Fargo
Morningstar
Synchrony
Ocwen Financial Solutions