Upload Button Icon Add office photos

Filter interviews by

Paxcom India Software Engineer Interview Questions, Process, and Tips

Updated 16 Sep 2021

Paxcom India Software Engineer Interview Experiences

1 interview found

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 125 minutes
Round difficulty - Easy

This round consist of coding questions and they were of good level based on strings and dynamic programming.
This round was the online coding test conducted on the platform Amcat. The languages allowed were C, C++, Java and Python.

  • Q1. 

    Kth Largest Element Problem Statement

    Ninja enjoys working with numbers, and Alice challenges him to find the Kth largest value from a given list of numbers.

    Input:

    The first line contains an integer 'T...
  • Ans. Sorting

    The idea is to sort the elements and return the kth largest element among them.

     

    The steps are as follows:

    • Sort the elements in descending order.
    • Return the element at k - 1 th index.
    Space Complexity: O(1)Explanation:

    O(1), no extra space required.

     

    As we are not using any extra space. Hence, the overall space complexity is O(1).

    Time Complexity: O(nlogn)Explanation:

    O(N*logN), where ‘N’ is the total number...

  • Answered Anonymously
  • Q2. 

    Maximize Expression Value

    Given an arithmetic expression EXP containing integer values separated by any of the operators ‘+’, ‘-’, and ‘*’, your task is to place parentheses such that the value of the exp...

  • Ans. Recursion

    The basic idea to solve this problem is to recursively place parentheses at all possible positions and find the maximum value obtained among all.

     

    We can divide the input expression into smaller expressions recursively and find the maximum value.

     

    If the input expression is ( EXP[ 0 ] opr EXP[ 1 ] opr EXP[ 2 ].............opr EXP[ n-1 ] ), then we can divide this expression into two as -

    ( EXP[ 0 ] opr…...

  • Answered Anonymously
Round 2 - Face to Face 

(3 Questions)

Round duration - 45 minutes
Round difficulty - Easy

The interview took place in the morning and the interviewer was very friendly.

  • Q1. 

    Kruskal’s Minimum Spanning Tree Algorithm Problem Statement

    You are given a connected undirected weighted graph. Your task is to determine the weight of the minimum spanning tree of this graph.

    A minimum...

  • Ans. Kruskal’s algorithm

    The basic idea of Kruskal’s algorithm is to sort the edges of the graph in non-decreasing order by its weight. And place all the nodes of the original graph isolated from each other, to form a forest of single node trees. Then, at each step of the algorithm, we will try to merge the trees by an edge of the original graph. The idea here is to choose the edges greedily. At each iteration, choose the ed...

  • Answered Anonymously
  • Q2. 

    Sum Tree Conversion

    Convert a given binary tree into its sum tree. In a sum tree, every node's value is replaced with the sum of its immediate children's values. Leaf nodes are set to 0. Finally, return th...

  • Ans. DFS Approach

    The approach is very simple and can be achieved using the tree Depth First traversal approach.

    Divide the tasks into two parts.

    1. Build the Sum Tree
      1. You need to update the root data with the sum of the left and right children’s data given that the root itself is not null.
      2. Well, you can do so by checking the left node and right node. If they are not null, take their sum and update the root data.
      3. Extend this idea fu...
  • Answered Anonymously
  • Q3. 

    Determine the Left View of a Binary Tree

    You are given a binary tree of integers. Your task is to determine the left view of the binary tree. The left view consists of nodes that are visible when the tree...

  • Ans. Preorder Traversal Approach

    The idea is to use preorder traversal and for each level of the binary tree include the leftmost node in the answer. In the preorder traversal, we will traverse the left subtree of any node before the right subtree so that all nodes to the left of the current node are visited before the nodes which are on the right of the current node. Hence for any level, we will reach the leftmost node befo...

  • Answered Anonymously

Interview Preparation Tips

Eligibility criteriaNo criteriaPaxcom interview preparation:Topics to prepare for the interview - Data Structures - Arrays, Strings, Linked List, Machine Learning, Basics of Database Management System and Operating System, Aptitude, Trees, Binary Search Tree, Graph, Tries, Fenwick Trees, Segment Trees, Hash-map. Algorithms - Recursion, Ad Hoc, Dynamic Programming, Greedy, Binary Search, Breadth-first search, Depth-first search, SortingTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Just be confident during interview and if you are stuck in between any question, then ask for a hint from the interviewer. The practice is key for success, so practice hard for Data Structures and Algorithms coding problems on Coding ninjas as it is the best platform for coding. Also you may practice on Geeks For Geeks or any other interview portal. 
Tip 2 : Try to do as much as Data structures related questions as practice made a man perfect.
Tip 3 : If you have already done similar types of questions then you will get a solution approach very fastly during the interview.

Application resume tips for other job seekers

Tip 1 : Mention all internships which you have done, as it increases your chances of shortlisting your resume.
Tip 2 : Keep resume short and up to the point and try to keep it on a single page.
Tip 3 : Also just write that skills which you are pretty confident about.

Final outcome of the interviewSelected

Skills evaluated in this 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 Indeed and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basics of Python
  • Q2. Basics of Django
Round 2 - Technical 

(2 Questions)

  • Q1. Python concepts knowledge check
  • Q2. Django architecture and projects discussion
Round 3 - Behavioral 

(1 Question)

  • Q1. General communication about the role and previous experience
Round 4 - HR 

(1 Question)

  • Q1. Package negotiation and culture check
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Given the react machine coding example
Round 2 - Behavioral 

(1 Question)

  • Q1. Explain about your projects
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Campus Placement

Round 1 - Technical 

(2 Questions)

  • Q1. Oops related questions
  • Q2. C language quizzes
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding Rount
DSA Round + Puzzle
SQL + Project Discussion
JS

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Dsa problems dp and tress problem

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Projects and intership

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn DSA
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Given an array Reverse array
  • Ans. 

    Reverse array of strings

    • Iterate through the array and swap elements from start to end

    • Use two pointers, one at the beginning and one at the end, and swap elements until they meet

  • Answered by AI
  • Q2. Giaven a string Reverse string
  • Ans. 

    Reverse a given string

    • Use built-in functions like reverse() or loop through the string in reverse order

    • Create a new string and append characters from the original string in reverse order

    • Convert the string to an array of characters, reverse the array, and then join it back into a string

  • Answered by AI
  • Q3. Given array find sum of all elements
  • Ans. 

    Calculate sum of all elements in a given array of strings

    • Iterate through the array and convert each element to integer before adding to sum

    • Handle edge cases like empty array or non-numeric elements

    • Return the final sum after iterating through all elements

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA well

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Coding exercise related to probability

Round 2 - Technical 

(2 Questions)

  • Q1. Database design for ride hailing service like uber, ola
  • Q2. Tech stack needed to build a real time application
  • Ans. 

    Tech stack for real time applications includes WebSocket, Node.js, Redis, and MongoDB.

    • Use WebSocket for real-time communication between client and server

    • Node.js for server-side logic and handling multiple connections efficiently

    • Redis for caching and storing real-time data

    • MongoDB for persistent data storage and retrieval

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Though the interviewer was friendly his tech knowledge was just average.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. RDBMS related questions asked
  • Q2. SQL login building related questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 4 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 - Aptitude Test 

Duration:30 min
Question from percentage,ratios ,HCF/LCM etc.,
Logical reasoning, English

Round 3 - Coding Test 

(1 Question)

  • Q1. Reverse a string by making groups of given 'm' characters
  • Ans. 

    Reverse a string by grouping 'm' characters together

    • Iterate through the string in groups of 'm' characters

    • Reverse each group of 'm' characters

    • Concatenate the reversed groups to get the final reversed string

  • Answered by AI
Round 4 - HR 

(3 Questions)

  • Q1. General HR questions
  • Q2. What is your family background?
  • Q3. Why should we hire you?

Skills evaluated in this interview

Tell us how to improve this page.

Paxcom India Software Engineer Salary
based on 77 salaries
₹5 L/yr - ₹13.2 L/yr
9% less than the average Software Engineer Salary in India
View more details

Paxcom India Software Engineer Reviews and Ratings

based on 10 reviews

3.1/5

Rating in categories

2.7

Skill development

2.6

Work-life balance

2.8

Salary

3.3

Job security

3.1

Company culture

2.9

Promotions

2.9

Work satisfaction

Explore 10 Reviews and Ratings
Software Engineer
77 salaries
unlock blur

₹5 L/yr - ₹13.2 L/yr

Senior Software Engineer
35 salaries
unlock blur

₹8 L/yr - ₹20.5 L/yr

E-Commerce Analyst
29 salaries
unlock blur

₹4 L/yr - ₹7 L/yr

Business Analyst
18 salaries
unlock blur

₹2.5 L/yr - ₹10 L/yr

QA Engineer
17 salaries
unlock blur

₹4 L/yr - ₹8 L/yr

Explore more salaries
Compare Paxcom India with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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