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

Software Engineer Interview Questions & Answers

user image CodingNinjas

posted on 16 Sep 2021

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

    Ninja loves playing with numbers. One day Alice gives him some numbers and asks him to find the Kth largest value among them.

    Input Format:
    The first line of input contains an integer...
  • 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 by CodingNinjas
  • Q2. Arithmetic Operators

    Given an arithmetic expression ‘EXP’ containing integer values separated by any of the three operators ‘ + ’, ‘ - ’ and ‘ * ’. You need to place parentheses in the given expression suc...

  • 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 by CodingNinjas
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

    You have been given a connected undirected weighted graph. Your task is to find the weight of the minimum spanning tree of the given graph.

    A minimum spanning tr...

  • 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 by CodingNinjas
  • Q2. Sum Tree

    For a given binary tree, convert it to its sum tree. That is, replace every node data with sum of its immediate children, keeping leaf nodes 0. Finally, return its preorder.

    For example:
    The inp...
  • 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 by CodingNinjas
  • Q3. Left View Of a Binary Tree

    You have been given a binary tree of integers. You are supposed to find the left view of the binary tree. The left view of a binary tree is the set of all nodes that are visible ...

  • 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 by CodingNinjas

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
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
  • Ans. 

    I am a passionate software engineer with 5 years of experience in developing web applications using various technologies.

    • 5 years of experience in software development

    • Proficient in developing web applications

    • Skilled in using various technologies

    • Passionate about software engineering

  • Answered by AI
  • 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
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Phone screen about previous experience
Round 2 - Technical 

(1 Question)

  • Q1. Mobile app development basics
Round 3 - HR 

(1 Question)

  • Q1. Culture fit questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at National Institute of Technology (NIT), Karnataka and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Coding Test 

Question based on array string linkedlist

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
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Campus Placement and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Consisted of aptitude and coding output questions

Round 2 - Coding Test 

Coding test was given with three questions .we have to write in on word in 45 mins

Round 3 - HR 

(1 Question)

  • Q1. They asked puzzles and other usual questions
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

Tell us how to improve this page.

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

Paxcom India Software Engineer Reviews and Ratings

based on 9 reviews

3.4/5

Rating in categories

2.9

Skill development

3.1

Work-Life balance

2.8

Salary & Benefits

3.4

Job Security

3.1

Company culture

2.8

Promotions/Appraisal

3.1

Work Satisfaction

Explore 9 Reviews and Ratings
Software Engineer
76 salaries
unlock blur

₹5 L/yr - ₹13.2 L/yr

Senior Software Engineer
39 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
16 salaries
unlock blur

₹4 L/yr - ₹8 L/yr

Explore more salaries
Compare Paxcom India with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview