Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Probey Services Private Limited Team. If you also belong to the team, you can get access from here

Probey Services Private Limited Verified Tick

Compare button icon Compare button icon Compare
4.8

based on 49 Reviews

Filter interviews by

Probey Services Private Limited Full Stack Developer Interview Questions and Answers

Updated 20 Dec 2024

Probey Services Private Limited Full Stack Developer Interview Experiences

1 interview found

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

I applied via Apna Jobs and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What about SDLC?
  • Ans. 

    SDLC stands for Software Development Life Cycle, which is a process used by software developers to design, develop, test, and deploy software applications.

    • SDLC consists of several phases including planning, analysis, design, implementation, testing, and maintenance.

    • Each phase has its own set of activities and deliverables to ensure the successful development of a software application.

    • Examples of SDLC models include Wat...

  • Answered by AI
  • Q2. What is React, and how does it relate to JavaScript?
  • Ans. 

    React is a JavaScript library for building user interfaces, commonly used for creating interactive web applications.

    • React is a front-end library developed by Facebook.

    • It allows developers to create reusable UI components.

    • React uses a virtual DOM to improve performance by only updating the necessary parts of the actual DOM.

    • React can be used with JavaScript to create dynamic and interactive web applications.

    • React compone...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be prepared before an interview.

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed before Oct 2022. There were 5 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 - HR 

(1 Question)

  • Q1. Asked for experience and background
Round 3 - One-on-one 

(1 Question)

  • Q1. Technical questions
Round 4 - Coding Test 

Prectical test on relevant experience and position requirements.

Round 5 - HR 

(1 Question)

  • Q1. Salary discussion and all
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Computer Fundamentals

Round 2 - Technical 

(1 Question)

  • Q1. Flatten a binary tree
  • Ans. 

    Flatten a binary tree by converting it into a linked list in-place.

    • Use a recursive approach to flatten the binary tree.

    • Traverse the tree in a pre-order manner and keep track of the previous node.

    • Set the left child of each node to null and the right child to the next node in the linked list.

    • Example: Input: 1 -> 2 -> 5 -> 3 -> 4 -> null, Output: 1 -> null -> 2 -> null -> 3 -> null -> 4 -> null -> 5 -> null

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Impliment counter using closure in js
  • Ans. 

    Implement a counter using closure in JavaScript.

    • Create a function that returns another function which increments a counter variable.

    • The counter variable should be defined in the outer function's scope and only accessible to the inner function.

    • Each time the inner function is called, increment the counter variable and return its value.

  • Answered by AI
  • Q2. Explain promises, promise.all(), impliment binary search
  • Ans. 

    Promises are objects representing the eventual completion or failure of an asynchronous operation. promise.all() is a method that takes an array of promises and returns a single promise that resolves when all of the promises have resolved.

    • Promises are used in JavaScript to handle asynchronous operations.

    • promise.all() takes an array of promises and returns a single promise that resolves when all promises in the array ha...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Questions on kafka, cache invalidation, diff b/w authentication and authorization

Interview Preparation Tips

Interview preparation tips for other job seekers - brush up basics of js and microservices

Skills evaluated in this interview

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

I applied via AngelList and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. System design Shortner URL
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Past Experience
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in May 2024.

Round 1 - Aptitude Test 

It was having english and maths questions

Round 2 - Coding Test 

Code was easy kindly do pratice

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

Leecode medium level question

Round 2 - Coding Test 

Leetcode Hard level Question

Round 3 - Technical 

(1 Question)

  • Q1. This is cto round asked some interview questions

I was interviewed in Apr 2022.

Round 1 - Coding Test 

Round duration - 75 minutes
Round difficulty - Medium

Test Comprises of 3 coding questions and some MCQs

Round 2 - Video Call 

Round duration - 60 minutes
Round difficulty - Medium

2 coding questions of (1 easy and 1 medium level) on hackerrank code-pair with the Interviewer

Round 3 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

This Round was based on CS fundamentals and One coding question was there as a Code-pair.

  • Q1. 

    Next Greater Element Problem Statement

    Given a list of integers of size N, your task is to determine the Next Greater Element (NGE) for every element. The Next Greater Element for an element X is the firs...

  • Ans. Brute Force

    For every element in the array, we will run a loop on its right side. As soon as we find an element on its right side which is greater than it, we will break the loop, assign it as the NGE of this element, move forward, and do the same for the next element.

    Space Complexity: O(1)Explanation:

    O(1)

     

    No extra space is used.

    Time Complexity: O(n^2)Explanation:

    O(N ^ 2),  Where N is the number of elements ...

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chandigarh Group of Colleges (CGC), Landran. I applied for the job as SDE - 1 in NoidaEligibility criteriaNo criteriaClearwater Analytics interview preparation:Topics to prepare for the interview - DSA, Java, OOPS, Microservices, REST APITime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Require coding skills to pass the interview. 
Tip 2 : Brush up on Java Skills
Tip 3 : Brush up on OOPS

Application resume tips for other job seekers

Tip 1 : Keep it to one page
Tip 2 : Mention relevant skills as per the job

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via campus placement at National Institute of Technology,(NIT), Delhi and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Kadance algorithm and find the middle of the linklist

Round 2 - Coding Test 

More on java and Python based coding questions

Round 3 - HR 

(4 Questions)

  • Q1. Behavioural questions were asked
  • Q2. What are your expectations from this job
  • Q3. What are your plans ahead
  • Q4. Where do you see yourself in 5 years ahead

Interview Preparation Tips

Interview preparation tips for other job seekers - Do good practise of DSA

Probey Services Private Limited Interview FAQs

How many rounds are there in Probey Services Private Limited Full Stack Developer interview?
Probey Services Private Limited interview process usually has 1 rounds. The most common rounds in the Probey Services Private Limited interview process are Technical.
What are the top questions asked in Probey Services Private Limited Full Stack Developer interview?

Some of the top questions asked at the Probey Services Private Limited Full Stack Developer interview -

  1. What is React, and how does it relate to JavaScri...read more
  2. what about SD...read more

Tell us how to improve this page.

Probey Services Private Limited Full Stack Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

MagicPin Interview Questions
3.1
 • 48 Interviews
Uplers Interview Questions
4.1
 • 40 Interviews
Stylebaazar Interview Questions
3.9
 • 30 Interviews
Yahoo Interview Questions
4.6
 • 29 Interviews
Tokopedia Interview Questions
4.0
 • 27 Interviews
Shaadi.com Interview Questions
3.3
 • 27 Interviews
HealthKart Interview Questions
3.9
 • 25 Interviews
Meritto Interview Questions
3.6
 • 22 Interviews
Furlenco Interview Questions
3.3
 • 20 Interviews
View all

Probey Services Private Limited Full Stack Developer Reviews and Ratings

based on 5 reviews

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 5 Reviews and Ratings
Compare Probey Services Private Limited with

MagicPin

3.1
Compare

Uplers

4.1
Compare

Stylebaazar

3.9
Compare

HealthKart

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