Upload Button Icon Add office photos
Engaged Employer

i

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

Pathlock Verified Tick

Compare button icon Compare button icon Compare
4.4

based on 88 Reviews

Filter interviews by

Pathlock Senior Software Engineer Interview Questions and Answers

Updated 10 Oct 2024

Pathlock Senior Software Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Two DSA questions linked list and graph

Round 2 - Technical 

(3 Questions)

  • Q1. Draw.Io architecture of current project and questions around it
  • Q2. Solid Principles low level design of LRU cache
  • Ans. 

    LRU cache is a data structure that maintains a fixed-size cache, evicting the least recently used item when full.

    • Use a doubly linked list to maintain the order of items based on their usage frequency

    • Use a hash map to quickly access items in the cache

    • When an item is accessed, move it to the front of the linked list to mark it as the most recently used

    • When adding a new item and the cache is full, remove the least recentl

  • Answered by AI
  • Q3. DSA maximum product of sum array
  • Ans. 

    Find the maximum product of sum of subarrays in an array.

    • Calculate the sum of all subarrays using prefix sum technique.

    • Calculate the product of all sums and return the maximum value.

  • Answered by AI
Round 3 - Technical 

(4 Questions)

  • Q1. Diameter of graph DSA
  • Ans. 

    The diameter of a graph in DSA is the longest shortest path between any two vertices in the graph.

    • The diameter of a graph can be calculated by running the Floyd-Warshall algorithm or using Breadth-First Search (BFS).

    • For example, in a graph with vertices A, B, C, D and edges (A, B), (B, C), (C, D), the diameter would be the distance between A and D.

    • The diameter of a graph can help in understanding the overall connectivi

  • Answered by AI
  • Q2. Advance SQl queries
  • Q3. Database partitions
  • Q4. String Interning
Round 4 - Behavioral 

(2 Questions)

  • Q1. Scalability related wuestions of applications
  • Q2. Company policies and behaviour questions
Round 5 - HR 

(2 Questions)

  • Q1. Salary Negotiations
  • Q2. Other behavioural questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare through pretty tough process for Software developers

Skills evaluated in this interview

Interview questions from similar companies

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

(1 Question)

  • Q1. What is your experience
  • Ans. 

    I do not have experience in the field of marketing.

    • I have primarily focused on software development and engineering roles throughout my career.

    • While I have worked closely with marketing teams on projects, my expertise lies in software development.

    • I have not directly worked in marketing roles or projects.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. There werent specific questions
  • Q2. Just a code challenge
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 were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Mimic Dataframe Merge
  • Ans. 

    Implement a function to mimic the functionality of merging two DataFrames in Python.

    • Create a function that takes two DataFrames as input.

    • Merge the two DataFrames based on a common column or index.

    • Handle different types of joins like inner, outer, left, and right joins.

    • Return the merged DataFrame as output.

  • Answered by AI
  • Q2. Improve above case by case
Round 2 - Coding Test 

1 hour - Find longest palindromic substring

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Coding Test 

Array and Java related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - HR was rude and the Interviewer was fixated on one topic. He was rejecting candidates left and right.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before May 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Hacker rank test. Basic coding questions on arrays, list etc.

Round 2 - Technical 

(1 Question)

  • Q1. Interactive session. Theoritical questions on oops, multithreading, springboot, java8 and few coding questions.
Round 3 - Technical 

(1 Question)

  • Q1. Design round. Questions on system design and best practices to be followed while developing any service. Few managerial questions as well.
Round 4 - HR 

(1 Question)

  • Q1. Profile related questions and salary discussion.

Interview Preparation Tips

Topics to prepare for Bottomline Senior Software Engineer interview:
  • Java8 and above
  • Data structure
  • Springboot
Interview preparation tips for other job seekers - Practice coding questions on java8 functions and few mid level data-structures based questions.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 

(3 Questions)

  • Q1. Medium prepare well on data structure
  • Q2. Find duplicate elements in array
  • Ans. 

    Find duplicate elements in array

    • Iterate through array and compare each element with all other elements

    • Use a hash table to keep track of seen elements

    • Sort the array and compare adjacent elements

  • Answered by AI
  • Q3. Remove duplicate elements in array
  • Ans. 

    Remove duplicate elements in array

    • Use a hash table to keep track of elements already seen

    • Sort the array and remove adjacent duplicates

    • Use a Set to store unique elements

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Based on api fetching and data optimazation
Round 4 - HR 

(1 Question)

  • Q1. Basic hr questions like inmovation creation difference
Round 5 - One-on-one 

(1 Question)

  • Q1. With manager one to one discussion on projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on data structure.
Prepare on array questions.

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 Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

2 Leetcode medium - LRU Cache and sliding window question

Round 2 - System Design 

(1 Question)

  • Q1. Design Whatsapp
  • Ans. 

    Design a messaging app like Whatsapp

    • Implement end-to-end encryption for secure messaging

    • Allow users to send text messages, images, videos, and documents

    • Include features like group chats, voice and video calls, status updates

    • Provide option for users to share their location

    • Develop a user-friendly interface with customizable settings

  • Answered by AI

Skills evaluated in this interview

Round 1 - Technical 

(1 Question)

  • Q1. Basics .net , c#, sql
Round 2 - Technical 

(1 Question)

  • Q1. Current Project Details, Roles and some technical questions too
Round 3 - HR 

(1 Question)

  • Q1. Package Discussion and Other basic details

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure your basics are strong and should be confident to explain about the current project and its technical details.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Discussion about OOPS concepts and String related program

Round 2 - Coding Test 

Program on Recursion and Array

Round 3 - HR 

(2 Questions)

  • Q1. Strength and Weakness
  • Q2. Reason for joining with company

I applied via Walk-in and was interviewed before Oct 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Good technical round, you can manage, mainly Java questions used to come

Round 2 - HR 

(2 Questions)

  • Q1. HR round is also good package discussion will happen
  • Q2. Company personal so kept secret

Interview Preparation Tips

Topics to prepare for Yodlee Senior Software Engineer interview:
  • Java
Interview preparation tips for other job seekers - With ML & advanced technology in working condition in place, they require less staffs

Pathlock Interview FAQs

How many rounds are there in Pathlock Senior Software Engineer interview?
Pathlock interview process usually has 5 rounds. The most common rounds in the Pathlock interview process are Technical, Coding Test and Behavioral.
What are the top questions asked in Pathlock Senior Software Engineer interview?

Some of the top questions asked at the Pathlock Senior Software Engineer interview -

  1. Solid Principles low level design of LRU ca...read more
  2. DSA maximum product of sum ar...read more
  3. Diameter of graph ...read more

Tell us how to improve this page.

Pathlock Senior Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Pathlock Senior Software Engineer Salary
based on 15 salaries
₹11.5 L/yr - ₹30.2 L/yr
45% more than the average Senior Software Engineer Salary in India
View more details

Pathlock Senior Software Engineer Reviews and Ratings

based on 5 reviews

3.6/5

Rating in categories

2.5

Skill development

4.1

Work-life balance

4.9

Salary

3.8

Job security

4.3

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 5 Reviews and Ratings
QA Engineer
21 salaries
unlock blur

₹6 L/yr - ₹12.8 L/yr

Senior Software Engineer
15 salaries
unlock blur

₹11.5 L/yr - ₹30.2 L/yr

Software Engineer
11 salaries
unlock blur

₹4.5 L/yr - ₹10.2 L/yr

Software Developer
11 salaries
unlock blur

₹3 L/yr - ₹10.9 L/yr

Project Manager
8 salaries
unlock blur

₹20 L/yr - ₹32 L/yr

Explore more salaries
Compare Pathlock with

Securonix

3.0
Compare

NortonLifeLock's

4.0
Compare

CyberArk

3.9
Compare

Palo Alto Networks

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