Upload Button Icon Add office photos

Paxcom India

Compare button icon Compare button icon Compare

Filter interviews by

Paxcom India Software Developer Interview Questions and Answers

Updated 19 May 2022

7 Interview questions

A Software Developer was asked
Q. 

Character Frequency Problem Statement

You are given a string 'S' of length 'N'. Your task is to find the frequency of each character from 'a' to 'z' in the string.

Example:

Input:
S : abcdg
Output:
1 ...
Ans. 

The task is to find the frequency of each character from 'a' to 'z' in a given string.

  • Create an array of size 26 to store the frequency of each character from 'a' to 'z'.

  • Iterate through the string and increment the count of the corresponding character in the array.

  • Print the array of frequencies as the output for each test case.

A Software Developer was asked
Q. 

Digit Count In Range Problem Statement

Given an integer K, and two numbers A and B, count the occurrences of the digit K in the range [A, B].

Include both the lower and upper limits in the count.

Input:

...
Ans. 

Count occurrences of a digit in a given range.

  • Iterate through the range [A, B] and count occurrences of digit K.

  • Convert integers to strings for easier digit comparison.

  • Handle edge cases like when A or B is equal to K.

  • Optimize by considering the position of K in the range.

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
A Software Developer was asked
Q. 

Find Two Missing Numbers Problem Statement

Given an array of unique integers where each element is in the range [1, N], and the size of the array is (N - 2), there are two numbers missing from this array. ...

Ans. 

Given an array of unique integers with two missing numbers, identify and return the missing numbers.

  • Iterate through the array and mark the presence of each number in a separate array.

  • Find the missing numbers by checking which numbers are not present in the marked array.

  • Return the missing numbers in increasing order.

A Software Developer was asked
Q. 

Missing Number Problem Statement

You are provided with an array named BINARYNUMS consisting of N unique strings. Each string represents an integer in binary, covering every integer from 0 to N except for o...

Ans. 

Find the missing integer in binary form from an array of unique binary strings.

  • Iterate through the binary strings and convert them to integers.

  • Calculate the sum of all integers from 0 to N using the formula (N*(N+1))/2.

  • Subtract the sum of integers in the array from the total sum to find the missing integer.

  • Convert the missing integer to binary form and return it as a string.

A Software Developer was asked
Q. 

Reverse the String Problem Statement

You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string.

Example:

Input:
STR = "abcde"
Output:
"ed...
Ans. 

Reverse a given string containing alphabets, numbers, and special characters.

  • Iterate through the string from the end to the beginning and append each character to a new string.

  • Alternatively, you can use built-in functions like reverse() or slicing in some programming languages.

  • Remember to handle different types of characters like alphabets, numbers, and special characters.

  • Ensure to consider the constraints on the ...

A Software Developer was asked
Q. 

Circular Move Problem Statement

You have a robot currently positioned at the origin (0, 0) on a two-dimensional grid, facing the north direction. You are given a sequence of moves in the form of a string o...

Ans. 

Determine if a robot's movement path is circular on a 2D grid given a sequence of moves in the form of a string.

  • Create a variable to track the robot's position (x, y) and direction (north, east, south, west).

  • Iterate through the move sequence and update the position and direction based on the current move.

  • Check if the robot returns to the starting position after completing the move sequence.

  • Return true if the robot...

A Software Developer was asked
Q. 

Problem Statement: Largest Island

You are provided with a non-empty grid consisting of only 0s and 1s. Your task is to determine the maximum area of an island within the given grid.

An island consists of a ...

Ans. 

Find the maximum area of an island in a grid of 0s and 1s.

  • Iterate through the grid and perform depth-first search (DFS) to find connected 1s.

  • Keep track of the area of each island found and return the maximum area.

  • Consider all four directions (horizontal, vertical, and diagonal) while exploring the island.

  • Handle edge cases like grid boundaries and already visited cells during DFS.

  • If no island is present, return 0 a...

Are these interview questions helpful?

Paxcom India Software Developer Interview Experiences

1 interview found

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 50 Minutes
Round difficulty - Easy

50 questions - 1 hour

  • Q1. 

    Problem Statement: Largest Island

    You are provided with a non-empty grid consisting of only 0s and 1s. Your task is to determine the maximum area of an island within the given grid.

    An island consists of a...

  • Ans. 

    Find the maximum area of an island in a grid of 0s and 1s.

    • Iterate through the grid and perform depth-first search (DFS) to find connected 1s.

    • Keep track of the area of each island found and return the maximum area.

    • Consider all four directions (horizontal, vertical, and diagonal) while exploring the island.

    • Handle edge cases like grid boundaries and already visited cells during DFS.

    • If no island is present, return 0 as the...

  • Answered by AI
Round 2 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

2 question of coding - 1 hour

  • Q1. 

    Circular Move Problem Statement

    You have a robot currently positioned at the origin (0, 0) on a two-dimensional grid, facing the north direction. You are given a sequence of moves in the form of a string ...

  • Ans. 

    Determine if a robot's movement path is circular on a 2D grid given a sequence of moves in the form of a string.

    • Create a variable to track the robot's position (x, y) and direction (north, east, south, west).

    • Iterate through the move sequence and update the position and direction based on the current move.

    • Check if the robot returns to the starting position after completing the move sequence.

    • Return true if the robot ends...

  • Answered by AI
  • Q2. 

    Character Frequency Problem Statement

    You are given a string 'S' of length 'N'. Your task is to find the frequency of each character from 'a' to 'z' in the string.

    Example:

    Input:
    S : abcdg
    Output:
    1...
  • Ans. 

    The task is to find the frequency of each character from 'a' to 'z' in a given string.

    • Create an array of size 26 to store the frequency of each character from 'a' to 'z'.

    • Iterate through the string and increment the count of the corresponding character in the array.

    • Print the array of frequencies as the output for each test case.

  • Answered by AI
Round 3 - Telephonic Call 

(2 Questions)

Round duration - 20 Minutes
Round difficulty - Easy

Introduction
Projects
DBMS
Oops

  • Q1. 

    Digit Count In Range Problem Statement

    Given an integer K, and two numbers A and B, count the occurrences of the digit K in the range [A, B].

    Include both the lower and upper limits in the count.

    Input:

    ...
  • Ans. 

    Count occurrences of a digit in a given range.

    • Iterate through the range [A, B] and count occurrences of digit K.

    • Convert integers to strings for easier digit comparison.

    • Handle edge cases like when A or B is equal to K.

    • Optimize by considering the position of K in the range.

  • Answered by AI
  • Q2. 

    Reverse the String Problem Statement

    You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string.

    Example:

    Input:
    STR = "abcde"
    Output:
    "e...
  • Ans. 

    Reverse a given string containing alphabets, numbers, and special characters.

    • Iterate through the string from the end to the beginning and append each character to a new string.

    • Alternatively, you can use built-in functions like reverse() or slicing in some programming languages.

    • Remember to handle different types of characters like alphabets, numbers, and special characters.

    • Ensure to consider the constraints on the input...

  • Answered by AI
Round 4 - Video Call 

(2 Questions)

Round duration - 40 Minutes
Round difficulty - Easy

 Introduction
 Projects (describe all mention in resume)
 Polymorphism (definition, types and real world example)
 Joins (left & right)
 Use of groupby
 JVM (JDK & JRE)

  • Q1. 

    Missing Number Problem Statement

    You are provided with an array named BINARYNUMS consisting of N unique strings. Each string represents an integer in binary, covering every integer from 0 to N except for ...

  • Ans. 

    Find the missing integer in binary form from an array of unique binary strings.

    • Iterate through the binary strings and convert them to integers.

    • Calculate the sum of all integers from 0 to N using the formula (N*(N+1))/2.

    • Subtract the sum of integers in the array from the total sum to find the missing integer.

    • Convert the missing integer to binary form and return it as a string.

  • Answered by AI
  • Q2. 

    Find Two Missing Numbers Problem Statement

    Given an array of unique integers where each element is in the range [1, N], and the size of the array is (N - 2), there are two numbers missing from this array....

  • Ans. 

    Given an array of unique integers with two missing numbers, identify and return the missing numbers.

    • Iterate through the array and mark the presence of each number in a separate array.

    • Find the missing numbers by checking which numbers are not present in the marked array.

    • Return the missing numbers in increasing order.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from National Institute of Technology, Kurukshetra. I applied for the job as SDE - 1 in MohaliEligibility criteria60% overallPaxcom interview preparation:Topics to prepare for the interview - Data Structures, OOPS, Algorithms, OS, Java, SQL, DBMSTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Main focus on DS algo
Tip 2 : Do Subject also (dbms, os, etc)
Tip 3 : Do some good projects

Application resume tips for other job seekers

Tip 1 : Highlight your strong points
Tip 2 : Change resume according to required skills by comapny

Final outcome of the interviewSelected

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Paxcom India?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview in Sep 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 150 Minutes
Round difficulty - Medium

3 coding question + 50 dsa

  • Q1. 

    Majority Element Problem Statement

    Given an array/list 'ARR' consisting of 'N' integers, your task is to find the majority element in the array. If there is no majority element present, return -1.

    Exampl...

  • Ans. 

    Find the majority element in an array, return -1 if no majority element exists.

    • Iterate through the array and keep track of the count of each element using a hashmap.

    • Check if any element's count is greater than floor(N/2) to determine the majority element.

    • Return the majority element or -1 if no majority element exists.

  • Answered by AI
  • Q2. 

    Height of a Binary Tree

    You are provided with an arbitrary binary tree consisting of 'N' nodes where each node is associated with a certain value. The task is to determine the height of the tree.

    Explana...

  • Ans. 

    Calculate the height of a binary tree given its level order traversal.

    • Traverse the binary tree level by level and keep track of the height as you go down the tree.

    • Use a queue data structure to perform level order traversal efficiently.

    • The height of a binary tree is the maximum number of edges from the root to any leaf node.

    • Handle NULL nodes represented by -1 in the input.

    • Return the height of the binary tree as a single...

  • Answered by AI
  • Q3. 

    Number of Islands Problem Statement

    You are provided with a 2-dimensional matrix having N rows and M columns, containing only 1s (land) and 0s (water). Your goal is to determine the number of islands in t...

  • Ans. 

    Count the number of islands in a 2D matrix of 1s and 0s.

    • Use Depth First Search (DFS) or Breadth First Search (BFS) to traverse the matrix and count the number of connected components.

    • Maintain a visited array to keep track of visited cells to avoid counting the same island multiple times.

    • Iterate through each cell in the matrix and if it is a land (1) and not visited, perform DFS/BFS to explore the connected land cells.

    • I...

  • Answered by AI
Round 2 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Hard

2 coding questions

  • Q1. 

    Maximum Length Pair Chain Problem Statement

    You are given 'N' pairs of integers where the first number is always smaller than the second number, i.e., in pair (a, b) -> a < b always. A pair chain is...

  • Ans. 

    Find the length of the longest pair chain that can be formed using the given pairs.

    • Sort the pairs based on the second element in ascending order.

    • Iterate through the sorted pairs and keep track of the maximum chain length.

    • Update the chain length if the current pair can be added to the chain.

    • Return the maximum chain length at the end.

  • Answered by AI
  • Q2. 

    Maximize Stock Trading Profit

    You are given an array prices, representing stock prices over N consecutive days. Your goal is to compute the maximum profit achievable by performing multiple transactions (i...

  • Ans. 

    Find maximum profit by buying and selling stocks multiple times.

    • Iterate through the array and find all increasing sequences of stock prices.

    • Calculate profit by buying at the start and selling at the end of each increasing sequence.

    • Sum up all profits to get the maximum profit achievable.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

Data structures,java script,web dev related questions,dbms questions

  • Q1. Can you describe how to design a web crawler?
  • Ans. 

    Designing a web crawler involves defining the scope, selecting a crawling strategy, implementing the crawler, handling data storage, and ensuring politeness.

    • Define the scope of the web crawler by determining the websites to crawl and the depth of the crawl.

    • Select a crawling strategy such as breadth-first or depth-first search based on the requirements.

    • Implement the web crawler using a programming language like Python o...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteria7 cgpaJosh Technology Group interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 12 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice Atleast 250 Questions
Tip 2 : Do atleast 2 projects
Tip 3 : practice basics of dsa

Application resume tips for other job seekers

Tip 1 : show your projects
Tip 2 : highlight your skills

Final outcome of the interviewRejected

Skills evaluated in this interview

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
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 Oct 2022. There were 3 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 - Coding Test 

They would ask searching sorting , binary search in first round

Round 3 - Technical 

(2 Questions)

  • Q1. Most of question were from Tree and DP
  • Q2. Delete a node from a binary tree.
  • Ans. 

    Delete a node from a binary tree.

    • Find the node to be deleted

    • If the node has no children, simply delete it

    • If the node has one child, replace it with its child

    • If the node has two children, find the minimum value in its right subtree, replace the node with that value, and delete the minimum value node

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Have firm knowlege of time complexity and Data structure

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Jun 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Duration 1 hour
Data structure and algorithms

Round 3 - Coding Test 

Duration 1.5 hour
Data structure and algorithms

Round 4 - One-on-one 

(1 Question)

  • Q1. Given a value find next sibling on right side of it without using global/heap variables
  • Ans. 

    Use a binary tree traversal algorithm to find the next sibling on the right side of a given value.

    • Implement an in-order traversal algorithm to traverse the binary tree

    • Keep track of the parent node and the direction of traversal to find the next sibling on the right side

    • If the given value is the right child of its parent, move up the tree until finding a node that is the left child of its parent

  • Answered by AI

Skills evaluated in this interview

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 - Aptitude Test 

Questions related to input and output.

Round 3 - Coding Test 

Subjective Round:4 questions related to coding.

Round 4 - One-on-one 

(1 Question)

  • Q1. 3 Interview round and finally HR round
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It is very impressive work on Josh technology assessment because we learn many new skills.

Round 2 - Technical 

(2 Questions)

  • Q1. What is api and how it is work ?
  • Ans. 

    API stands for Application Programming Interface. It is a set of rules and protocols that allows different software applications to communicate with each other.

    • APIs define the methods and data formats that applications can use to request and exchange information.

    • APIs can be used to access services provided by other software applications, such as retrieving data from a database or sending notifications.

    • Examples of APIs ...

  • Answered by AI
  • Q2. What is software development life cycle and which steps are following?
  • Ans. 

    Software development life cycle (SDLC) is a process used by software developers to design, develop, and test software.

    • 1. Planning: Define the project scope, requirements, and objectives.

    • 2. Analysis: Gather and analyze user requirements.

    • 3. Design: Create a detailed design of the software.

    • 4. Implementation: Develop the software based on the design.

    • 5. Testing: Test the software for bugs and issues.

    • 6. Deployment: Release t...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

They only focuses on DSA

Are these interview questions helpful?
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 - Coding Test 

5 coding questions in the first round

Round 3 - One-on-one 

(2 Questions)

  • Q1. About yourself , about your project explaination.
  • Ans. Explianation about your project they'll ask fine details also.
  • Answered Anonymously
  • Q2. Find prime numbers value.
  • Ans. 

    A prime number is a number greater than 1 that is divisible only by 1 and itself.

    • Start with a loop to iterate through numbers

    • Check if each number is divisible by any number from 2 to its square root

    • If not divisible, add it to the list of prime numbers

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - just go through leet code question easy and medium.
Interview experience
3
Average
Difficulty level
-
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Aptitude Test 

Basic coding question on array and string.

Interview Preparation Tips

Interview preparation tips for other job seekers - Do coding practices as much you can

I applied via Job Fair and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - MCQ test 

(1 Question)

  • Q1. MCQ test. 20 questions were asked and attempted in 30 minutes.
Round 2 - Coding Test 

1hr duration, test can be attempted in any language. I have attempted in python.

Interview Preparation Tips

Topics to prepare for Raja Software Labs Software Developer interview:
  • Java
  • Python
Interview preparation tips for other job seekers - MCQ test based on loops and string, asked in java I think. I attempted and cleared. 20 questions/30 mins.

coding test was 1 hour and 5 questions were given. medium level questions.

Tell us how to improve this page.

Paxcom India Software Developer Salary
based on 16 salaries
₹7 L/yr - ₹14.6 L/yr
At par with the average Software Developer Salary in India
View more details

Paxcom India Software Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
78 salaries
unlock blur

₹5 L/yr - ₹13 L/yr

Senior Software Engineer
37 salaries
unlock blur

₹8 L/yr - ₹20.5 L/yr

E-Commerce Analyst
37 salaries
unlock blur

₹4 L/yr - ₹7 L/yr

QA Engineer
21 salaries
unlock blur

₹4 L/yr - ₹9.7 L/yr

Business Analyst
20 salaries
unlock blur

₹2.4 L/yr - ₹11 L/yr

Explore more salaries
Compare Paxcom India with

Maxgen Technologies

4.6
Compare

JoulestoWatts Business Solutions

3.0
Compare

Value Point Systems

3.6
Compare

F1 Info Solutions and Services

3.7
Compare
write
Share an Interview